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

Math.round()、Math.ceil()、Math.floor()与Math.random()的区别?

时间:2014-07-16 17:40:53      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:style   color   strong   c   mat   dom   

Math.round(x)  四舍五入 加上0.5向下取整

  Math.round(1.5)  2

  Math.round(-11.5)  -11

  Math.round(-11.2)  -10

Math.ceil(x)  不小于x的最小整数

  Math.ceil(1.5)  2

  Math.ceil(-1.5)  -1

Math.floor(x)  返回小于等于x的最大整数

  Math.floor(5.99))   5
  Math.floor(-5.99)  -6

Math.random()  生成0和1之间的随机小数

  Math.random() * 7 生成0和7之间的随机小数
  Math.random() * 7 + 1生成0和8之间的随机小数
  Math.floor(Math.random() * 7 + 1)生成0和8之间的随机整数,注意是整数,不是小数

Math.round()、Math.ceil()、Math.floor()与Math.random()的区别?,布布扣,bubuko.com

Math.round()、Math.ceil()、Math.floor()与Math.random()的区别?

标签:style   color   strong   c   mat   dom   

原文地址:http://www.cnblogs.com/jiechn/p/3847803.html

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