首页 > 代码库 > Math.round()、Math.ceil()、Math.floor()与Math.random()的区别?
Math.round()、Math.ceil()、Math.floor()与Math.random()的区别?
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之间的随机整数,注意是整数,不是小数
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。