//求 [a,b]之间的随机整数
Math.floor(Math.random()*(b-a+1)+a)
产生闭区间内的随机整数
最新推荐文章于 2021-05-22 02:09:13 发布
//求 [a,b]之间的随机整数
Math.floor(Math.random()*(b-a+1)+a)