자바 생 성 랜 덤 정수
3109 단어 자바
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
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.