continue與break的理解

經過網上的一些例子,一些小總結:
ide

break用法:it

#include <stdio.h>
int main(void)
{
   int ch;
   
   for(ch = 0; ch < 6; ch++)
   {
       if(ch == 3)
       {
           printf("break\n");
           break;
           printf("I love you\n");
       }
       printf("now ch = %d\n",ch);
   }
   printf("test over!!\n");
   return 0;
}

總結:若是遇到break,程序就會終止並推出,因此後面的‘我愛你’也不會打印,由於now ch = %d也是屬於循環裏的,因此也不會打印出now ch = 3.io


二,嵌套循環(break)class

#include <stdio.h>
int main(void)
{
    int ch, n;
    
    for(ch = 0; ch < 6; ch++)
    {
        printf("start...\n");
        for(n = 0; n < 6;n++)
        {
            if(n == 3)
            {
                printf("break\n");
                break;
                printf("helloworld\n");
            }
            printf("now n = %d\n",n);
        }
        if(ch == 3)
        {
            printf("break\n");
            break;
            printf("haha\n");
        }
        printf("now ch = %d\n",ch);
    }
    printf("test over\n");
    return 0;
}

 總結:break只會影響到最靠近他的循環,最外層的循環不會干預,每次裏邊的循環結束後,再跳到外層循環。對於'helloworld','haha'在程序中根本沒其做用,也不會打印'now ch = 3' 和'now n = 3'.
test


continue用法:循環

#include <stdio.h>
int main(void)
{
    int ch;
    
    for(ch = 0;ch < 6;ch++)
    {
        printf("start...\n");
        if(ch == 3)
        {
            printf("continue\n");
            continue;
            printf("helloworld\n");
        }
        printf("now ch = %d\n",ch);
    }
    printf("test over\n");
    return 0;
}

  總結:continue沒有break那樣無情,只是終止當前這一步的循環,只要是包括在這個循環裏的,後面的都終止,(break其實也是這樣).而後跳過這一步繼續循環.程序


循環嵌套(continue):總結

#include <stdio.h>
int main(void)
{
    int ch, n;
    
    for(ch = 0;ch <6;ch++)
    {
        printf("start...\n");
        for(n = 0;n <6;n++)
        {
            if(n == 3)
            {
                printf("continue\n");
                continue;
                printf("helloworld\n");
            }
            printf("now n = %d\n",n);
        }
        if(ch == 3)
        {
            printf("continue\n");
            continue;
            printf("haha\n");
        }
        printf("now ch = %d\n",ch);
     }
     printf("test over!!\n");
     return 0;
 }
 
總結:他也是隻會影響到最裏邊的那一層。其餘同上!
相關文章
相關標籤/搜索