1. 程式人生 > >隨機產生1-6共10萬次,統計1-6分別出現的次數

隨機產生1-6共10萬次,統計1-6分別出現的次數

<!doctype html> <html> <head> <meta charset="utf-8"> <title>無標題文件</title> </head>

<body>   <script type="text/javascript">     var a=[0,0,0,0,0,0]//1-6出現的次數     for(var i=0;i<=100000;i++){       var x=Math.floor(Math.random()*6)       a[x]++     }     document.write(a)   </script> </body> </html>