logo

C의 while 루프

While 루프는 사전 테스트된 루프라고도 합니다. 일반적으로 while 루프를 사용하면 주어진 부울 조건에 따라 코드의 일부를 여러 번 실행할 수 있습니다. 반복되는 if 문으로 볼 수 있습니다. while 루프는 반복 횟수를 미리 알 수 없는 경우에 주로 사용됩니다.

팬더와 numpy

C 언어의 while 루프 구문

C 언어의 while 루프 구문은 다음과 같습니다.

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

C의 while 루프 흐름도

C while 루프의 흐름도

C 언어의 while 루프 예제

1의 테이블을 인쇄하는 간단한 while 루프 프로그램을 살펴보겠습니다.

 #include int main(){ int i=1; while(i<=10){ printf('%d 
',i); i++; } return 0; < pre> <h4>Output</h4> <pre> 1 2 3 4 5 6 7 8 9 10 </pre> <h2>Program to print table for the given number using while loop in C</h2> <pre> #include int main(){ int i=1,number=0,b=9; printf(&apos;Enter a number: &apos;); scanf(&apos;%d&apos;,&amp;number); while(i<=10){ printf('%d 
',(number*i)); i++; } return 0; < pre> <h4>Output</h4> <pre> Enter a number: 50 50 100 150 200 250 300 350 400 450 500 </pre> <pre> Enter a number: 100 100 200 300 400 500 600 700 800 900 1000 </pre> <hr> <h2>Properties of while loop</h2> <ul> <li>A conditional expression is used to check the condition. The statements defined inside the while loop will repeatedly execute until the given condition fails.</li> <li>The condition will be true if it returns 0. The condition will be false if it returns any non-zero number.</li> <li>In while loop, the condition expression is compulsory.</li> <li>Running a while loop without a body is possible.</li> <li>We can have more than one conditional expression in while loop.</li> <li>If the loop body contains only one statement, then the braces are optional.</li> </ul> <h4>Example 1</h4> <pre> #include void main () { int j = 1; while(j+=2,j<=10) { printf('%d ',j); } printf('%d',j); < pre> <h4>Output</h4> <pre> 3 5 7 9 11 </pre> <h4>Example 2</h4> <pre> #include void main () { while() { printf(&apos;hello Javatpoint&apos;); } } </pre> <h4>Output</h4> <pre> compile time error: while loop can&apos;t be empty </pre> <h4>Example 3</h4> <pre> #include void main () { int x = 10, y = 2; while(x+y-1) { printf(&apos;%d %d&apos;,x--,y--); } } </pre> <h4>Output</h4> <pre> infinite loop </pre> <h2>Infinitive while loop in C</h2> <p>If the expression passed in while loop results in any non-zero value then the loop will run the infinite number of times.</p> <pre> while(1){ //statement } </pre></=10)></pre></=10){></pre></=10){>

C에서 while 루프를 사용하여 주어진 숫자에 대한 테이블을 인쇄하는 프로그램

 #include int main(){ int i=1,number=0,b=9; printf(&apos;Enter a number: &apos;); scanf(&apos;%d&apos;,&amp;number); while(i<=10){ printf(\'%d 
\',(number*i)); i++; } return 0; < pre> <h4>Output</h4> <pre> Enter a number: 50 50 100 150 200 250 300 350 400 450 500 </pre> <pre> Enter a number: 100 100 200 300 400 500 600 700 800 900 1000 </pre> <hr> <h2>Properties of while loop</h2> <ul> <li>A conditional expression is used to check the condition. The statements defined inside the while loop will repeatedly execute until the given condition fails.</li> <li>The condition will be true if it returns 0. The condition will be false if it returns any non-zero number.</li> <li>In while loop, the condition expression is compulsory.</li> <li>Running a while loop without a body is possible.</li> <li>We can have more than one conditional expression in while loop.</li> <li>If the loop body contains only one statement, then the braces are optional.</li> </ul> <h4>Example 1</h4> <pre> #include void main () { int j = 1; while(j+=2,j<=10) { printf(\'%d \',j); } printf(\'%d\',j); < pre> <h4>Output</h4> <pre> 3 5 7 9 11 </pre> <h4>Example 2</h4> <pre> #include void main () { while() { printf(&apos;hello Javatpoint&apos;); } } </pre> <h4>Output</h4> <pre> compile time error: while loop can&apos;t be empty </pre> <h4>Example 3</h4> <pre> #include void main () { int x = 10, y = 2; while(x+y-1) { printf(&apos;%d %d&apos;,x--,y--); } } </pre> <h4>Output</h4> <pre> infinite loop </pre> <h2>Infinitive while loop in C</h2> <p>If the expression passed in while loop results in any non-zero value then the loop will run the infinite number of times.</p> <pre> while(1){ //statement } </pre></=10)></pre></=10){>
 Enter a number: 100 100 200 300 400 500 600 700 800 900 1000 

while 루프의 속성

  • 조건식은 조건을 확인하는 데 사용됩니다. while 루프 내부에 정의된 명령문은 주어진 조건이 실패할 때까지 반복적으로 실행됩니다.
  • 조건은 0을 반환하면 참이 됩니다. 0이 아닌 숫자를 반환하면 조건은 거짓이 됩니다.
  • while 루프에서는 조건식이 필수입니다.
  • 본문 없이 while 루프를 실행하는 것이 가능합니다.
  • while 루프에는 하나 이상의 조건식을 가질 수 있습니다.
  • 루프 본문에 문이 하나만 포함되어 있으면 중괄호는 선택 사항입니다.

실시예 1

 #include void main () { int j = 1; while(j+=2,j<=10) { printf(\'%d \',j); } printf(\'%d\',j); < pre> <h4>Output</h4> <pre> 3 5 7 9 11 </pre> <h4>Example 2</h4> <pre> #include void main () { while() { printf(&apos;hello Javatpoint&apos;); } } </pre> <h4>Output</h4> <pre> compile time error: while loop can&apos;t be empty </pre> <h4>Example 3</h4> <pre> #include void main () { int x = 10, y = 2; while(x+y-1) { printf(&apos;%d %d&apos;,x--,y--); } } </pre> <h4>Output</h4> <pre> infinite loop </pre> <h2>Infinitive while loop in C</h2> <p>If the expression passed in while loop results in any non-zero value then the loop will run the infinite number of times.</p> <pre> while(1){ //statement } </pre></=10)>

실시예 2

 #include void main () { while() { printf(&apos;hello Javatpoint&apos;); } } 

산출

 compile time error: while loop can&apos;t be empty 

실시예 3

 #include void main () { int x = 10, y = 2; while(x+y-1) { printf(&apos;%d %d&apos;,x--,y--); } } 

산출

 infinite loop 

C의 무한 while 루프

while 루프에 전달된 표현식의 결과가 0이 아닌 값이면 루프는 무한 횟수 실행됩니다.

버블 정렬 자바
 while(1){ //statement }