using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApp4
{
    class Program
    {
        static void Main(string[] args)
        {
            string line = Console.ReadLine();
            double v = double.Parse(line);
            Console.WriteLine(Math.Round(v, 0, MidpointRounding.AwayFromZero));
            Console.ReadKey();
        }
    }
}

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-03-03
  • 2021-11-29
  • 2022-12-23
  • 2022-01-23
  • 2022-12-23
猜你喜欢
  • 2021-06-17
  • 2021-11-18
  • 2021-06-20
  • 2022-01-27
  • 2021-06-09
  • 2022-12-23
相关资源
相似解决方案