返回列表 發帖

[隨堂測驗] 亂數 (三)

本帖最後由 鄭繼威 於 2023-5-31 20:28 編輯

產生20組範圍介於1~3之隨機亂數(整數).
1~3 -> 歸零
同時-1 -> 0~2
0~2 -> (int)(r*3)
剛剛-1要把它補回去(+1) -> (int)(r*3+1)


Math.random()                          0.0000 ~ 0.999999
Math.random()*3                      0.0000 ~ 2.999999
(int)(Math.random()*3)             0 ~ 2
(int)(Math.random()*3+1)         1 ~ 3


本帖隱藏的內容需要回復才可以瀏覽

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表