码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2016-06-10 17:43:40      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:

Math.ceil()向上舍入

1
2
3
alert(Math.ceil(20.1)) //输出 21
alert(Math.ceil(20.5)) //输出 21
alert(Math.ceil(20.9)) //输出 21

 Math.round标准的四舍五入

1
2
3
alert(Math.round(20.1)) //输出 20
alert(Math.round(20.5)) //输出 21
alert(Math.round(20.9)) //输出 21

 Math.floor()向下舍入

1
2
3
alert(Math.floor(20.1)) //输出 20
alert(Math.floor(20.5)) //输出 20
alert(Math.floor(20.9)) //输出 20

 

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

标签:

原文地址:http://www.cnblogs.com/huangyin1213/p/5573815.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!