本帖最後由 tonyh 於 2014-11-22 17:20 編輯
產生15組範圍介於112~118之隨機亂數.- public class ch33
- {
- public static void main(String args[])
- {
- for(int i=1; i<=15; i++)
- System.out.println((int)(Math.random()*7+112));
- }
- }
- /*
- Math.random(); 0.00000 ~ 0.99999
- Math.random()*7; 0.00000 ~ 6.99999
- Math.random()*7+112; 112.00000 ~ 118.99999
- (int)(Math.random()*7+112) 112 ~ 118
- */
複製代碼 |