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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
void main() {
///반기문과 반복문
///반복문: 특정한 코드의 반복을 컴퓨터에게 지시 할 때 사용하는 프로그래밍 문법
///for / for in / while / do - while
///continue / break
///
/// for (기존 변수; 조건식; 가변치) {
/// 조건식이 참 일 때 반복할 코드
/// }
for (int i = 0; i < 10; i++) {
print("Running For Index $i");
}
///for (단일 변수 in 컬렉션 (List / Set/ Map)) {
/// 컬렉션 내에 요소들의 수 / 변수 만큼 사용 될 반복문
///}
List<int> indexs = [0, 1, 2, 3, 4, 5];
for (final index in indexs) {
print("Running For Index $index");
}
///while (조건식) {
/// 조건식이 참일 경우 실행 될 반복문
///}
bool isRunning = true;
int count = 0;
while (isRunning) {
if (count >= 5) {
isRunning = false;
// break;
}
count ++;
print("while is Running");
}
///do - while
///do {
/// 선행 진행 / 반복 될 코드
///} while (조건);
int num = 0;
do {
num ++;
if (num == 4) {
continue;
}
print("Running Do While $num");
} while (num < 10);
}
Flutter를 위한 Dart 조건문
This post is licensed under CC BY 4.0 by the author.