1. 입력한 횟수대로 줄넘기를 함
2. 입력값이 0보다 커야함
3. -1을 입력하면 줄넘기 종료
4. 종료하면서 줄넘기의 총 횟수를 출력함
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
29
30
31
32
33
|
// 반복문 줄넘기
int totalLineCount = 0;
while(true)
{
Console.Write("\n줄넘기를 몇회 하시겠습니까? ");
Console.WriteLine(); // 한줄 공백
if (lineCount == -1)
{
Console.WriteLine("총 횟수는 {0}입니다.",totalLineCount);
Console.WriteLine("줄넘기를 종료합니다");
break;
}
if (lineCount <= 0)
{
Console.WriteLine("줄넘기 횟수는 0보다 커야합니다.");
continue;
}
Console.WriteLine(); // 한줄 공백
for (int i=0; i<lineCount; i++)
{
Console.WriteLine("줄넘기를 총 {0}회 하였습니다.",i+1);
totalLineCount++;
}
Console.WriteLine(); // 한줄 공백
}
|
'C# > 수업내용' 카테고리의 다른 글
2020.04.08. 수업내용 - 열거형 변환 (캐스팅 ( ) ) (0) | 2020.04.08 |
---|---|
2020.04.08. 수업내용 - 유닛 좌우 움직이기 (특정위치 아이템) (0) | 2020.04.08 |
2020.04.07. 수업내용 - while 문 5 (애니메이션 3) (0) | 2020.04.07 |
2020.04.07. 수업내용 - while 문 4 (애니메이션 2) (0) | 2020.04.07 |
2020.04.07. 수업내용 - while 문 3 (애니메이션 1) (0) | 2020.04.07 |