while과 do while의 비교(1)
using System;
class WhileCompare {
public static void Main(string[] args) {
int start;
start=0;
Console.WriteLine("while문 실행 결과");
while(++start < 10) {
Console.WriteLine("{0,3}", start);
}
Console.WriteLine("-------------------");
start = 0;
Console.WriteLine("do-while문 실행 결과");
do {
Console.WriteLine("{0,3}", start);
} while(++start < 10);
Console.ReadLine();
}
}
'닷넷 > C#/ASP/ADO.NET' 카테고리의 다른 글
[ C#개발과정 Tip ]- for 문 (0) | 2015.09.16 |
---|---|
[ C#개발과정 Tip ]- while과 do while의 비교(2) (0) | 2015.09.16 |
[ C#개발과정 Tip ]- while문과 do while문 (0) | 2015.09.15 |
[ C#개발과정 Tip ]- switch 문(2) (0) | 2015.09.15 |
[ C#개발과정 Tip ]- switch 문(1) (0) | 2015.09.15 |