C#/코드의 흐름제어
[C#]for문
과아아앙
2021. 3. 31. 18:58
1. for문의 기본 형태
for (초기화식; 조건식; 반복식)
{
동작
}
2. for문 소스코드
using System;
namespace CSharp
{
class Program
{
static void Main(string[] args)
{
for (int i = 0; i < 5; i++)
{
Console.WriteLine("Hello World");
}
}
}
}
3. 반복 탈출
일정 조건이 되었을 때 break;를 사용해서 탈출한다.
4. 반복 탈출 소스코드
using System;
namespace CSharp
{
class Program
{
static void Main(string[] args)
{
for (int i = 0; i < 5; i++)
{
Console.WriteLine("Hello World");
if (i == 3)
{
break;
}
}
}
}
}
만약 i = 3일 경우 반복을 중지.
5. continue
반복을 돌 때 중간에 continue;가 나오면 그 아래부분은 실행하지 않고 다음 루프를 도는 것이다.