swich 문(4)
Console/실습 2019. 9. 26. 11:09
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
Console.WriteLine("다음 중 통일신라 시대의 도읍은 어디인지 알맞은 정답을 찾아 입력하세요.");
Console.WriteLine("1. 평양");
Console.WriteLine("2. 서라벌");
Console.WriteLine("3. 개성");
Console.WriteLine("4. 한양");
Console.WriteLine("5. 전주");
int a = Int32.Parse(Console.ReadLine());
switch (a)
{
case 1:
Console.WriteLine("틀렸습니다. 통일신라의 도읍은 평양이 아닙니다.");
break;
case 2:
Console.WriteLine("정답입니다. 통일신라의 도읍은 서라벌 입니다.");
break;
case 3:
Console.WriteLine("틀렸습니다. 통일신라의 도읍은 개성이 아닙니다.");
break;
case 4:
Console.WriteLine("틀렸습니다. 통일신라의 도읍은 한양이 아닙니다.");
break;
case 5:
Console.WriteLine("틀렸습니다. 통일신라의 도읍은 전주가 아닙니다.");
break;
default:
Console.WriteLine("1~7중에 입력해주세요.");
break;
}
http://colorscripter.com/info#e" target="_blank" style="color:#e5e5e5text-decoration:none">Colored by Color Scripter
|

'Console > 실습' 카테고리의 다른 글
swich 문(6) (0) | 2019.09.26 |
---|---|
swich 문(5) (0) | 2019.09.26 |
swich 문(3) (0) | 2019.09.26 |
swich 문 (2) (0) | 2019.09.26 |
swich 문 (1) (0) | 2019.09.26 |