本帖最後由 李泳霖 於 2022-1-27 11:01 編輯
產生15組範圍介於112~118之隨機亂數.- import java.util.Scanner;
- public class Ch01 {
- public static void main(String[] args) {
- for(int i=1; i<=15; i++)
- System.out.println((int)(Math.random()*7+112));
- }
- }
- /*
- * 112~118
- Math.random():
- 0.00000000000000000000~0.99999999999999999999
- Math.random()*7:
- 0.000000000000000000000~6.99999999999999999999
- Math.random()*7+112:
- 112.00000000000000000000000~118.9999999999999999999
-
- 無條件捨去
- (int)(Math.random()*7+112):
-
-
- *
- *
- */
複製代碼 |