C continue

学习C – C continue

要跳过当前的迭代并继续下一个,请在循环体中使用continue语句。

continue;

例子


#include <stdio.h>
int main(void){
    int guess = 1;
    char response;

    printf("is your number %d?\n", guess);
    while ((response = getchar()) != "y")     /* get response */
    {
        if (response == "n")
            printf("Well, then, is it %d?\n", ++guess);
        else
            printf("Sorry, I understand only y or n.\n");
        while (getchar() != "\n")
            continue;                 /* skip rest of input line */
    }

    return 0;
}

上面的代码生成以下结果。

版权声明:本文采用知识共享 署名4.0国际许可协议 [BY-NC-SA] 进行授权
文章名称:《C continue》
文章链接:https://zhuji.vsping.com/315356.html
本站资源仅供个人学习交流,请于下载后24小时内删除,不允许用于商业用途,否则法律问题自行承担。