Math中的floor,round和ceil方法总结
Posted zhaobao1830
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Math中的floor,round和ceil方法总结相关的知识,希望对你有一定的参考价值。
floor向下取整,返回不大于的最大整数 Math.floor(1.4)=1.0
ceil向上取整,返回不小于的最小整数 Math.ceil(1.4)=2.0
round 四舍五入,将原来的数字加入0.5后再向下取整
Math.round(-1.4)=-1 Math.round(-1.5)=-1 Math.round(-1.6)=-2
以上是关于Math中的floor,round和ceil方法总结的主要内容,如果未能解决你的问题,请参考以下文章
js 中的 Math.ceil() Math.floor Math.round()
4java 中的 Math.round(-1.5) 等于多少?
Javascript Math ceil()floor()round()三个函数的区别