循环继续 continue

int c=3;
    while(c<8){
        c+=1;
        if(c==5){
            continue;
        }
        printf("\n%d",c);
    }

输出:

2 3 4 6 7

原文地址:https://www.cnblogs.com/mattins/p/2977427.html