package com.javalesson.test;
import java.util.Random;
public class T00Lotto {
int a, b, c, d, e, f;
public void Random(){
Random random = new Random();
a=random.nextInt(44)+1; //0~44까지 랜덤 +1 = 1~45까지 랜덤
while(true){
b=random.nextInt(44)+1;
if(b != a) break; //중복 배제
}
while(true){
c=random.nextInt(44)+1;
if(c != a && c != b) break;//중복 배제
}
while(true){
d=random.nextInt(44)+1;
if(d != a && d != b && d != c) break;//중복 배제
}
while(true){
e=random.nextInt(44)+1;
if(e != a && e != b && e != c && e != d) break;//중복 배제
}
while(true){
f=random.nextInt(44)+1;
if(f != a && f != b && f != c && f != d && f != e) break;//중복 배제
}
System.out.println("이번 주 행운번호");
System.out.print(a+", "+b+", "+c+", "+d+", "+e+", "+f);
}
public static void main(String[] args) {
T00Lotto LT = new T00Lotto();
LT.Random();
}
}
'JAVA > 기본다지기' 카테고리의 다른 글
JAVA 17일차 필기 (1) | 2016.08.30 |
---|---|
JAVA 16일차 필기 (1) | 2016.08.29 |
JAVA 15일차 필기 (0) | 2016.08.26 |
[JAVA] 간단한 영화관 예약프로그램 예제 (0) | 2016.08.25 |
[JAVA] 가위바위보 게임 (1) | 2016.08.25 |