Math.round()ceil() floor()

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/Fighting_mjtao/article/details/81258640

Math类中提供了三个与取整有关的方法:ceil()、floor()、round(),这些方法的作用与它们的英文名称的含义相对应,
1、ceil的英文意义是天花板,该方法就表示向上取整,Math.ceil(11.3)的结果为12,Math.ceil(-11.3)的结果是-11;
2、floor的英文意义是地板,该方法就表示向下取整,Math.ceil(11.6)的结果为11,Math.ceil(-11.6)的结果是-12
3、round方法,它表示“四舍五入”,算法为Math.floor(x+0.5),即将原来的数字加上0.5后再向下取整,所以,Math.round(11.5)的结果为12,Math.round(-11.5)的结果为-11。

猜你喜欢

转载自blog.csdn.net/Fighting_mjtao/article/details/81258640