#include <stdio.h> main() { int c; c = getchar(); while(c != EOF) { putchar(c); c = getchar(); } }. 是正确的! 当程序调用getchar()时,程序就等着用户按键。
確定! 回上一頁