Math.round() Math.ceil() Math.floor() 区别

Math.round()  round字面意思 “附近 周围” 

小数点后第一位<5

正数:Math.round(11.46)=11

负数:Math.round(-11.46)=-11

小数点后第一位>5

正数:Math.round(11.68)=12

负数:Math.round(-11.68)=-12

小数点后第一位=5

正数:Math.round(11.5)=12

扫描二维码关注公众号,回复: 16184954 查看本文章

负数:Math.round(-11.5)=-11

总结:四舍五入

2.Math.ceil():根据“ceil”的字面意思“天花板”去理解;

例如:

Math.ceil(11.46)=Math.ceil(11.68)=Math.ceil(11.5)=12

Math.ceil(-11.46)=Math.ceil(-11.68)=Math.ceil(-11.5)=-11

总结:向上取整

3.Math.floor():根据“floor”的字面意思“地板”去理解;

例如:

Math.floor(11.46)=Math.floor(11.68)=Math.floor(11.5)=11

Math.floor(-11.46)=Math.floor(-11.68)=Math.floor(-11.5)=-12

总结:向下取整

猜你喜欢

转载自blog.csdn.net/guoweifeng0012/article/details/95340749
今日推荐