logo

أثناء الحلقة في C

تُعرف الحلقة أيضًا باسم الحلقة التي تم اختبارها مسبقًا. بشكل عام، تسمح حلقة while بتنفيذ جزء من التعليمات البرمجية عدة مرات اعتمادًا على شرط منطقي معين. يمكن أن ينظر إليه على أنه عبارة if متكررة. تُستخدم حلقة while غالبًا في حالة عدم معرفة عدد التكرارات مسبقًا.

بناء جملة حلقة while في لغة C

فيما يلي بناء جملة حلقة while في لغة C:

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

مخطط انسيابي للحلقة في C

مخطط انسيابي لـ c أثناء الحلقة

مثال على حلقة while في لغة C

دعونا نرى البرنامج البسيط للحلقة التي تطبع الجدول 1.

 #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){>

برنامج لطباعة جدول للرقم المحدد باستخدام حلقة while في لغة C

 #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. وسيكون الشرط خطأ إذا أعاد أي رقم غير الصفر.
  • في حلقة 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(1){ //statement }