位置:首頁 > 高級語言 > C語言教學 > C語言continue語句

C語言continue語句

continue在C語言編程語句的工作有點像break語句。代替強製終止,但是continue強製循環的下一個迭代發生,跳過之後的代碼。

對於for循環,continue語句使循環的條件測試和增量部分來執行。對於while和do ... while循環,continue語句使程序控製傳遞給條件測試。

語法

在C語言中 continue語句的語法如下:

continue;

流程圖:

C continue statement

例子:

#include <stdio.h>
 
int main ()
{
   /* local variable definition */
   int a = 10;

   /* do loop execution */
   do
   {
      if( a == 15)
      {
         /* skip the iteration */
         a = a + 1;
         continue;
      }
      printf("value of a: %d
", a);
      a++;
     
   }while( a < 20 );
 
   return 0;
}

當上述代碼被編譯和執行時,它產生了以下結果:

value of a: 10
value of a: 11
value of a: 12
value of a: 13
value of a: 14
value of a: 16
value of a: 17
value of a: 18
value of a: 19