class Program
{
static void Main()
{
Console.Write("Введите число: "
double number = Convert.ToDouble(Console.ReadLine());
// Округление тремя способами
int roundValue = (int)Math.Round(number);
int ceilValue = (int)Math.Ceiling(number);
int floorValue = (int)Math.Floor(number);
// Вывод результатов
Console.WriteLine($"Округление стандартное: {roundValue}"
Console.WriteLine($"Округление вверх (Ceil): {ceilValue}"
Console.WriteLine($"Округление вниз (Floor): {floorValue}"
}
}