其他分享
首页 > 其他分享> > 获取某个范围内的随机整数

获取某个范围内的随机整数

作者:互联网

得到两个数之间的随机整数包括两个数在内

function getRandomIntInclusive(min, max) {
  min = Math.ceil(min);
  max = Math.floor(max);
  return Math.floor(Math.random() * (max - min + 1)) + min; //含最大值,含最小值 
}

得到两个数之间的随机整数

function getRandomInt(min, max) {
  min = Math.ceil(min);
  max = Math.floor(max);
  return Math.floor(Math.random() * (max - min)) + min; //不含最大值,含最小值
}

 

标签:random,min,max,floor,整数,随机,某个,Math
来源: https://www.cnblogs.com/lxjs/p/16245184.html