1 ВАРИАНТ ЗАДАЧА 1

 avatar
9teenz
csharp
a year ago
274 B
3
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 luv
Leave a Comment