Math.Round 四舍六入五取偶

Posted 158-186

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Math.Round 四舍六入五取偶相关的知识,希望对你有一定的参考价值。

            double result1 = Math.Round(0.3);
            Console.WriteLine(result1);//result1显示0

            double result2 = Math.Round(1.5);
            Console.WriteLine(result2);//result2显示2
       double result = Math.Round(0.5);
            Console.WriteLine(result);//result显示0

            double result3 = Math.Round(0.6);
            Console.WriteLine(result3);//result1显示1         

            Console.Read();            

 

以上是关于Math.Round 四舍六入五取偶的主要内容,如果未能解决你的问题,请参考以下文章

C#中Math.Round()实现中国式四舍五入

C#中Math.Round()实现中国式四舍五入

C#中Math类的计算整数的三种方法

C#取整函数Math.RoundMath.Ceiling和Math.Floor

JS怎样做四舍五入

C#取整函数Math.RoundMath.Ceiling和Math.Floor