循环继续 continue

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

输出:

2 3 4 6 7

posted @ 2013-03-23 17:30  晨祷  阅读(167)  评论(0编辑  收藏  举报