import java.util.Random;
public class Q6 {
public static void main(String[] args) {
// TODO Auto-generated method stub
Random r = new Random(); // 랜덤 변수와 객체 선언
// 1~9까지의 난수를 com1 변수를 생성 후 대입
int com1 = r.nextInt(9)+
// 1~9까지의 난수를 com2 변수를 생성 후 대입
int com2 = r.nextInt(9)+1;
// 1~9까지의 난수를 com3 변수를 생성 후 대입
int com3 = r.nextInt(9)+1;
//com1과 com2가 같거나 com2와 com3이 같거나 com1과 com3이 같으면 반복
while(com1 == com2 || com2 == com3 || com1 == com3) {
System.out.println("중복있음");//출력
System.out.println(com1+","+com2+","+com3); //출력
com1 = r.nextInt(9)+1;// 1~9까지의 난수를 com1 변수에 대입
com2 = r.nextInt(9)+1;// 1~9까지의 난수를 com2 변수에 대입
com3 = r.nextInt(9)+1;// 1~9까지의 난수를 com3 변수에 대입
}
System.out.println(com1+","+com2+","+com3);//출력
}
}