Math.roundMath.floorMath.ceil 区别
Posted zj199012
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Math.roundMath.floorMath.ceil 区别相关的知识,希望对你有一定的参考价值。
1、Math.round() 按照四舍五入的方式返回值
例如:Math.round(9.5)=10
Math.round(9.4)=9
2、Math.floor()返回最小整数
例如:Math.floor(9.5)=9
Math.floor(9.2)=9
3、Math.ceil()返回最大整数
例如: Math.ceil(9.1)=10
Math.ceil(9.5)=10
以上是关于Math.roundMath.floorMath.ceil 区别的主要内容,如果未能解决你的问题,请参考以下文章