public class Lotto {
public static void main(String[] args) {
boolean swit[] = new boolean[45];
int lotto[] = new int [6];
int w, r;
w = 0;
while(w < 6) {
r = (int)(Math.random()*45); // 0 ~ 44
if(swit[r] == false) {
swit[r] = true;
lotto[w] = r+1; // 1 ~ 45
w++;
}
}
for(int i =0; i < lotto.length; i++) {
System.out.print(lotto[i]+ " ");
}
}
}
로또 번호 생성기
'문제풀이 > Java' 카테고리의 다른 글
[자바] 가위바위보 게임 (0) | 2021.05.11 |
---|---|
[자바] 배열 순차 정렬 (0) | 2021.05.11 |
[자바] Baseball Game (0) | 2021.05.10 |
[자바] 숫자 맞추기 UP&DOWN (0) | 2021.05.10 |
[자바] 문자열이 숫자인지 판별하기 (0) | 2021.05.10 |