1.for
초기화, 조건 검사, 증감식으로 구성됩니다.
for (초기화; 조건; 증감) {
// 반복할 코드
}
int main() {
for (int i = 0; i < 5; ++i) {
std::cout << "i = " << i << std::endl;
}
return 0;
}
2.while
조건이 참인 동안 반복합니다.
while (조건) {
// 반복할 코드
}
int main() {
int i = 0;
while (i < 5) {
std::cout << "i = " << i << std::endl;
++i;
}
return 0;
}
3.do-while
최소 한 번은 실행되고, 조건이 참인 동안 반복합니다.
do {
// 반복할 코드
} while (조건);
int main() {
int i = 0;
do {
std::cout << "i = " << i << std::endl;
++i;
} while (i < 5);
return 0;
}
'Language > C++' 카테고리의 다른 글
[C++] 함수 (0) | 2024.08.01 |
---|---|
[C++] 조건 (0) | 2024.08.01 |
[C++] 표준 입출력 (0) | 2024.07.30 |