JavaScript--机选双色球

 <!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<script>
function doubleBall(){
var reds=[];//声明空数组reds;
//当reds的个数<6,就要反复生成红球
while(reds.length<6){
//在1~33之间生成一个随机整数,保存在变量r中
var r=Math.floor(Math.random()*33+1);
//遍历reds中每个数字
for(var i=0;i<reds.length;i++){
if(reds[i]==r){//如果当前元素等于r
break;//退出循环
}
}//(遍历结束)
if(i==reds.length){//如果i等于length
reds.push(r);//将r压入reds中
}
}//(循环结束)
//将reds按数字升序排列
reds.sort(function(a,b){return a-b;});
//在1~16之间生成一个随机整数保存在变量blue中
var blue=Math.floor(Math.random()*16+1);
document.write("<b style='color:red'>"+
String(reds)
+"</b>"+
"<b style='color:blue'>"+blue+"</b>");
}
</script>
</head>
<body>
<button onclick="doubleBall()">机选</button>
</body>
</html>

当然没有写html和css,所以会比较丑,近期的随笔都是用JavaScript实现一些小的玩意~

上一篇:PyQt5 QSerialPort子线程操作


下一篇:4.2、Libgdx各个模块概览