728x90
반응형
SMALL
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int i;
boolean a = true;
while(a){
System.out.print("1. Korea\n" +
"2. USA\n" +
"3. Japan\n" +
"4. China\n" +
"number? ");
i = sc.nextInt();
switch(i){
case 1:
System.out.println("\nSeoul");
break;
case 2:
System.out.println("\nWashington");
break;
case 3:
System.out.println("\nTokyo");
break;
case 4:
System.out.println("\nBeijing");
break;
default:
System.out.println("\nnone");
a = false;
}//end switch
}
}
}
728x90
반응형
LIST
'프로그래밍 > 자바' 카테고리의 다른 글
[자바] 정올 126 : 반복제어문1 - 형성평가2 (0) | 2023.09.24 |
---|---|
[자바] 정올 125 : 반복제어문1 - 형성평가1 (0) | 2023.09.23 |
[자바] 정올 540 : 반복제어문1 - 자가진단5 (0) | 2023.09.23 |
[자바] 정올 539 : 반복제어문1 - 자가진단4 (0) | 2023.09.23 |
[자바] 정올 538 : 반복제어문1 - 자가진단3 (0) | 2023.09.23 |