命中回避確率計算
by Tenderfeel
JavaScript
var m = Math.floor(Math.sqrt(10) - 10*2)+100;
document.write(m+'<br><br>');
for(i=0;i<100;i++){h = Math.floor(Math.random() * m);
document.write(h+'<br>')
}
by Tenderfeel
var m = Math.floor(Math.sqrt(10) - 10*2)+100;
document.write(m+'<br><br>');
for(i=0;i<100;i++){h = Math.floor(Math.random() * m);
document.write(h+'<br>')
}