BaysideLizard 发表于 2023-6-23 21:32:49

S1E15:break语句和continue语句

#include <stdio.h>
//BaysideLizard写于2023年 6月22日
//忽略输入的 'C' 和 'c' 并输出

int main()
{
        int ch;
        while ((ch = getchar()) != '\n')
        {
                if (ch == 'C' || ch == 'c')
                {
                        continue;//跳过本次循环的剩余内容
                }
               
                putchar(ch);
        }
       
        putchar('\n'); //遇到'\n'才能显示出来
       
        return 0;

}
//为什么只有按下回车后才能看到putchar(ch)的内容?

//因为putchar函数是用标准输出流(stdout)来输出字符的,而标准输出流是有缓冲区的。
//也就是说,它会先把字符存放在缓冲区中。
//直到遇到换行符('\n')或者缓冲区满了才会把缓冲区中的内容输出到屏幕上。


运行结果:
abcdABCD
abdABD

--------------------------------
Process exited after 3.877 seconds with return value 0
请按任意键继续. . .


跟着小甲鱼学C的第四天
加油!{:10_288:}

yinda_peng 发表于 2023-6-25 09:11:27

加油!
页: [1]
查看完整版本: S1E15:break语句和continue语句