Math用法

Posted cxxiao

tags:

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

Math.Floor 总是舍去小数

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

            double result2 = Math.Floor(0.5);
            Console.WriteLine(result2);//result2显示0

            double result3 = Math.Floor(0.6);
            Console.WriteLine(result3);//result3显示0   

round方法:
static long round(double a)
此方法返回的参数最接近的long.
static int round(float a)
此方法返回的参数最接近的整数.

以上是关于Math用法的主要内容,如果未能解决你的问题,请参考以下文章

实用代码片段

SQL Select 语句的用法

java中math的用法

mathjs用法

Math用法

Math.floor,Math.ceil,Math.rint,Math.round用法