while문과 비슷하지만, 조건식을 검사하기 전에 먼저 코드 블록을 한번 실행함
do
{
// 조건식이 참인 경우 실행되는 코드
}
while (조건식);
● 예시
using System;
public class Test
{
public static void Main()
{
int i = 0;
do
{
Console.WriteLine("num is :" + i );
i++;
}
while(i < 3);
}
}
'C#' 카테고리의 다른 글
배열과 컬렉션(Collection) (0) | 2023.11.07 |
---|---|
Random (0) | 2023.11.07 |
char 과 string 비교 (0) | 2023.11.07 |
3항 연산자 (0) | 2023.11.06 |
디버깅(Debugging) 방법 (0) | 2023.11.06 |