双色球的随机
Posted shenbo666
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了双色球的随机相关的知识,希望对你有一定的参考价值。
//随机数 双色球
var compare = function (x, y) {//比较函数
if (x < y) {
return -1;
} else if (x > y) {
return 1;
} else {
return 0;
}
}
num1 = Math.floor(Math.random() * 32)+1;
num2 = Math.floor(Math.random() * 32)+1;
num3 = Math.floor(Math.random() * 32)+1;
num4 = Math.floor(Math.random() * 32)+1;
num5 = Math.floor(Math.random() * 32)+1;
num6 = Math.floor(Math.random() * 32)+1;
num7 = Math.floor(Math.random() * 16)+1;
var arr = [num1, num2, num3, num4, num5, num6];
arr.sort(compare);
console.log(arr,num7);
以上是关于双色球的随机的主要内容,如果未能解决你的问题,请参考以下文章