function random_between_rang(min, max) { return Math.floor(Math.random() * (max - min + 1) + min); } var i = 0; while (i < 20) ...
確定! 回上一頁