Math.floor(Math.random() * (max - min + 1)) + min

 

例如 95 - 100 的随机数

Math.floor(Math.random() * (100 - 95 + 1)) + 95

 

小数 例如 0.9 - 1

Math.floor(Math.random() * (100 - 90 + 1) + 90) / 100

 

posted on 2020-06-15 16:25  浅唱年华1920  阅读(159)  评论(0)    收藏  举报