logo

C++ Do-While 루프

C++ do-while 루프는 프로그램의 일부를 여러 번 반복하는 데 사용됩니다. 반복 횟수가 고정되어 있지 않아 적어도 한 번 이상 루프를 실행해야 하는 경우에는 do-while 루프를 사용하는 것이 좋습니다.

C++ do-while 루프는 루프 본문 이후에 조건을 확인하기 때문에 적어도 한 번 실행됩니다.

 do{ //code to be executed }while(condition); 

흐름도:

Cpp Do while 루프 1

C++ do-while 루프 예제

1의 테이블을 인쇄하는 C++ do-while 루프의 간단한 예를 살펴보겠습니다.

 #include using namespace std; int main() { int i = 1; do{ cout&lt; <i<<'
'; i++; } while (i <="10)" ; pre> <p>Output:</p> <pre> 1 2 3 4 5 6 7 8 9 10 </pre> <hr> <h2>C++ Nested do-while Loop</h2> <p>In C++, if you use do-while loop inside another do-while loop, it is known as nested do-while loop. The nested do-while loop is executed fully for each outer do-while loop.</p> <p>Let&apos;s see a simple example of nested do-while loop in C++.</p> <pre> #include using namespace std; int main() { int i = 1; do{ int j = 1; do{ cout&lt; <i<<'
'; j++; } while (j <="3)" ; i++; (i pre> <p>Output:</p> <pre> 1 1 1 2 1 3 2 1 2 2 2 3 3 1 3 2 3 3 </pre> <hr> <h2>C++ Infinitive do-while Loop</h2> <p>In C++, if you pass <strong>true</strong> in the do-while loop, it will be infinitive do-while loop.</p> <pre> do{ //code to be executed }while(true); </pre> <hr> <h2>C++ Infinitive do-while Loop Example</h2> <pre> #include using namespace std; int main() { do{ cout&lt;<'infinitive do-while loop'; } while(true); < pre> <p>Output:</p> <pre> Infinitive do-while Loop Infinitive do-while Loop Infinitive do-while Loop Infinitive do-while Loop Infinitive do-while Loop ctrl+c </pre></'infinitive></pre></i<<'
';></pre></i<<'
';>

C++ 중첩된 do-while 루프

C++에서는 다른 do-while 루프 내에 do-while 루프를 사용하는 경우 이를 중첩된 do-while 루프라고 합니다. 중첩된 do-while 루프는 각 외부 do-while 루프에 대해 완전히 실행됩니다.

C++에서 중첩된 do-while 루프의 간단한 예를 살펴보겠습니다.

 #include using namespace std; int main() { int i = 1; do{ int j = 1; do{ cout&lt; <i<<\'
\'; j++; } while (j <="3)" ; i++; (i pre> <p>Output:</p> <pre> 1 1 1 2 1 3 2 1 2 2 2 3 3 1 3 2 3 3 </pre> <hr> <h2>C++ Infinitive do-while Loop</h2> <p>In C++, if you pass <strong>true</strong> in the do-while loop, it will be infinitive do-while loop.</p> <pre> do{ //code to be executed }while(true); </pre> <hr> <h2>C++ Infinitive do-while Loop Example</h2> <pre> #include using namespace std; int main() { do{ cout&lt;<\'infinitive do-while loop\'; } while(true); < pre> <p>Output:</p> <pre> Infinitive do-while Loop Infinitive do-while Loop Infinitive do-while Loop Infinitive do-while Loop Infinitive do-while Loop ctrl+c </pre></\'infinitive></pre></i<<\'
\';>

C++ 부정사 do-while 루프

C++에서 통과하면 진실 do-while 루프에서는 부정사 do-while 루프가 됩니다.

 do{ //code to be executed }while(true); 

C++ 부정사 do-while 루프 예제

 #include using namespace std; int main() { do{ cout&lt;<\'infinitive do-while loop\'; } while(true); < pre> <p>Output:</p> <pre> Infinitive do-while Loop Infinitive do-while Loop Infinitive do-while Loop Infinitive do-while Loop Infinitive do-while Loop ctrl+c </pre></\'infinitive>