码迷,mamicode.com
首页 > 其他好文 > 详细

Math ceil() Math.floor(),Math.round()用法

时间:2014-11-14 13:57:41      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:style   color   ar   os   sp   java   strong   div   on   

Math.ceil()
 
Math.ceil(x)
参数:
  • x:一个数值。
返回值:返回大于或等于x,并且与之最接近的整数。
注:如果x是正数,则把小数;如果x是负数,则把小数
例:
<script type="text/javascript">
document.write( Math.ceil(1.2)+", "+Math.ceil(1.8)+", "+Math.ceil(-1.2)+", "+Math.ceil(-1.8) );
</script>
输出结果为:
document.write( Math.ceil(1.2)+", "+Math.ceil(1.8)+", "+Math.ceil(-1.2)+", "+Math.ceil(-1.8) ); 2, 2, -1, -1
 

 

Math.floor()
 
Math.floor(x)
参数:
  • x:一个数值。
返回值:返回小于或等于x,并且与之最接近的整数。
注:如果x是正数,则把小数;如果x是负数,则把小数
例:
<script type="text/javascript">
document.write( Math.floor(1.2)+", "+Math.floor(1.8)+", "+Math.floor(-1.2)+", "+Math.floor(-1.8) );
</script>
输出结果为:
document.write( Math.floor(1.2)+", "+Math.floor(1.8)+", "+Math.floor(-1.2)+", "+Math.floor(-1.8) ); 1, 1, -2, -2
 

 

Math.round()
 
Math.round(x)
参数:
  • x:一个数值。
返回值:x最接近的整数。
例:
<script type="text/javascript">
document.write( Math.round(1.2)+", "+Math.round(1.8)+", "+Math.round(-1.2)+", "+Math.round(-1.8) );
</script>
输出结果为:
document.write( Math.round(1.2)+", "+Math.round(1.8)+", "+Math.round(-1.2)+", "+Math.round(-1.8) ); 1, 2, -1, -2

Math ceil() Math.floor(),Math.round()用法

标签:style   color   ar   os   sp   java   strong   div   on   

原文地址:http://www.cnblogs.com/cjbk/p/4097096.html

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