https://weiqing.tistory.com/64?category=784657
https://weiqing.tistory.com/58?category=784657
// user input u1 != u2 != u3
boolean check;
int w1;
while(true) {
check = false;
w1 = 0;
while(w1 < 3) {
System.out.print((w1 + 1) + "번째 수 = ");
u_num[w1] = sc.nextInt();
w1++;
}
// 같은 숫자가 있는지 체크
out:for (int i = 0; i < u_num.length; i++) {
for (int j = 0; j < u_num.length; j++) {
if(u_num[i] == u_num[j] && i != j) {
check = true; // 입력한 같은 숫자가 있음
break out;
}
}
}
if(check == false) {
break;
}
System.out.println("입력한 숫자 중에 중복되는 숫자가 있습니다. 다시 입력해 주십시오");
}
'JAVA > 쓸만한 코드' 카테고리의 다른 글
배열 오름/내림차순 정렬 sorting (0) | 2020.05.26 |
---|---|
ASCII코드, charAt으로 문자-> 숫자변환/ 함수 (0) | 2020.05.26 |
swit[ ] 로 겹치는 랜덤숫자 제거 (0) | 2020.05.26 |
String Class 코드 (0) | 2020.05.26 |
10, 2, 16진수 변환 코드 (0) | 2020.05.26 |