java生成隨機整數

1. 使用Random類的nextInt方法:


 

Random rand = new Random();java

rand.nextInt(max);, 此時輸出[0,max),注意右邊是開區間,若是須要設定最小值可經過 rand.nextInt(max-min+1)+min方式,此時的範圍爲[min,max]dom

import java.util.Random;

public class RandomNumber {
    public static void main(String[] args) {
        Random rand = new Random();
        for(int i=0; i<100; i++){
            //輸出[0,100)
            //rand.nextInt(100)
            
            //輸出[0,100]
            //rand.nextInt(101);
            
            //輸出[1,100]
            //System.out.println(rand.nextInt(100)+1);
            
            //輸出[10,99]
            //System.out.println(rand.nextInt(90)+10);
            
            //輸出[10-100]
            //rand.nextInt(91)+10
        }
        
        
    }
}

 

2. 使用Math.random()方法


    //使用Math.random()輸出爲double類型
    //輸出[0,10)
    //(int)(Math.random()*10);
            
    //輸出[0,10]
    //(int)(Math.random()*10 + 1);
            

 

A + Math.floor(Math.random()*B)

eg:

for(int i=0; i<100; i++){
System.out.println( (int) (20 + Math.floor(Math.random()*100)));
}spa

 

輸出:code

36
30
66
26
58
42
108
77
52
115
83
105
99blog

相關文章
相關標籤/搜索