자바 생 성 랜 덤 정수

3109 단어 자바
1.Random 클래스 의 nextInt 방법 사용:
 
Random rand = new Random();
rand.nextInt(max);, 이 때 출력[0,max)은 오른쪽 이 개방 구간 임 을 주의 하 십시오.최소 값 을 설정 하려 면 rand.nextInt(max-min+1)+min 방식 을 사용 할 수 있 습 니 다.이때 범 위 는[min,max]입 니 다.
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))); }
 
출력:
36306626584210877521158310599
 
 

좋은 웹페이지 즐겨찾기