1 ВАРИАНТ ЗАДАЧА 1
9teenz
csharp
2 years ago
274 B
8
Indexable
using System;
public class Program
{
public static void Main()
{
Console.Write("Enter a value: ");
float a = float.Parse(Console.ReadLine());
Console.WriteLine("Ответ = {0} километров", a / 1000);
}
}
// by 9teenz with luvEditor is loading...
Leave a Comment