var temporary=new Array(); for(var i=0;i<4;i++) for(var j=0;j<4;j++) { if(board[i][j]==0) { temporary[count]=i*4+j; count++; } } var pos= parseInt( Math.floor( Math.random() * count ) ); ranx=temporary/4; rany=temporary%4; 自己写的随机代码
2 回答
举报
0/150
提交
取消