반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 파이썬
- Tkinter
- matplotlib
- SQL
- PySpark
- string
- Apache
- GIT
- math
- Github
- gas
- google apps script
- array
- PostgreSQL
- Kotlin
- Redshift
- Google Excel
- list
- Mac
- dataframe
- Java
- c#
- PANDAS
- numpy
- hive
- Excel
- django
- Python
- Google Spreadsheet
Archives
- Today
- Total
달나라 노트
C# : for loop, foreach loop (반복문) 본문
728x90
반응형
C#에서 for loop는 아래처럼 사용할 수 있습니다.
for (int i=1; i<=5; i=i+1) {
실행할 code
}
int i = 1; -> 먼저 for loop에서 각 단계마다 사용될 인덱스를 선언하고 1로 초기화해줍니다.
i<=5; -> for loop가 진행될 조건입니다. 이 조건이 true인 경우 for loop의 코드를 실행합니다.
i=i+1; -> for loop가 한번 실행된 후 인덱스인 i값을 1 증가시켜줍니다.
아래는 for loop를 사용한 예시입니다.
using System;
class MyProgram
{
static void Main()
{
for (int i = 0; i < 5; i++)
{
Console.WriteLine(i);
}
}
}
-- Result
0
1
2
3
4
아래 예시는 for loop, if, break를 조합하여 사용한 예시입니다.
using System;
class MyProgram
{
static void Main()
{
for (int i = 0; i < 10; i++)
{
Console.WriteLine(i);
if (i == 5)
{
break;
}
}
}
}
-- Result
1
2
3
4
5
for loop를 돌리다가 i == 5인 경우 break를 실행하게 해서 for loop를 종료하도록 합니다.
foreach loop는 array를 대상으로 for loop를 실행할 수 있도록 해줍니다.
using System;
class MyProgram
{
static void Main()
{
string[] fruits = { "Apple", "Banana", "Pineapple" };
foreach (string f in fruits)
{
Console.WriteLine(f);
}
}
}
-- Result
Apple
Banana
Pineapple
728x90
반응형
'C# > C#' 카테고리의 다른 글
C# : break, continue (0) | 2022.03.23 |
---|---|
C# : while loop (반복문) (0) | 2022.03.23 |
C# : switch ~ case (조건문) (0) | 2022.03.23 |
C# : if ~ else if ~ else (조건문), 한줄 if문 (0) | 2022.03.23 |
C# : substring (문자열 자르기) (0) | 2022.03.23 |
Comments