标签:方法 random 等于 大于等于 pre and 随机 rand dom
1.方法介绍
Math.ceil(n)
上取整,大于等于n返回与它最接近的整数
Math.floor(n)
下取整,小于等于n返回与它最接近的整数
Math.round(n)
四舍五入取整
Math.random()
获取0~1的随机数
2.获取m到n的随机数
Math.floor(Math.random()*(m-n+1))+n
或者
Math.ceil(Math.random()*(m-n))+n
标签:方法 random 等于 大于等于 pre and 随机 rand dom
原文地址:https://www.cnblogs.com/wangxuxu7912/p/11371293.html