Math.ceil()Math.floor()和Math.round()

Posted newcaoguo

tags:

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

下面来介绍将小数值舍入为整数的几个方法:Math.ceil()、Math.floor()和Math.round()。


这三个方法分别遵循下列舍入规则:
Math.ceil()执行向上舍入,即它总是将数值向上舍入为最接近的整数;
Math.floor()执行向下舍入,即它总是将数值向下舍入为最接近的整数;
Math.round()执行标准舍入,即它总是将数值四舍五入为最接近的整数(这也是我们在数学课上学到的舍入规则)。

以上是关于Math.ceil()Math.floor()和Math.round()的主要内容,如果未能解决你的问题,请参考以下文章

Math.ceil()Math.floor()和Math.round()

python中的math.ceil(x)和math.floor(x)

js中Math.roundparseIntMath.floor和Math.ceil小数取整总结(转)

Math中的floor,round和ceil方法总结

Math三个函数

js中Math.roundparseIntMath.floor和Math.ceil小数取整总结