四舍五入

通过double转int只保留整数的特性,实现四舍五入。

        public static void Main(string[] args)
        {
            double number=Convert.ToDouble(Console.ReadLine());
            int res=(int)(number+0.5f);//double转int,只保留整数.
            Console.WriteLine(res);
            Console.ReadKey();
        }

 

posted @ 2018-10-24 22:14  夕西行  阅读(153)  评论(0编辑  收藏  举报