Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
通过 K&R,我试图了解 C。我想编写一个程序,在屏幕上打印用户的前一行,除非字符是“a”。
int main(){ int c; while((c=getchar())!=EOF){ if(c!='a') putchar(c); } return 0; }
是的,程序不多。但它不会按预期工作。我是否需要使用字符“a”的 ASCII 值,因为上面的代码只打印所有字母,无论是否为 a。
代码应该按规定工作,但您会发现,使用getcharwhile 循环将在输入 a 时打印回车。这是因为在当前实现getchar中将继续读取输入缓冲区直到它为空,如果你想阻止这种情况发生,你可以在 if 语句中刷新它。
getchar
此时输入一个文本字符串将打印删除任何 *a*s 的字符串