我目前正在嘗試結束類似這樣的while迴圈: #include <stdio.h> int main() { while(getchar() != EOF) { if( getchar() == EOF ) break; } return 0; }
確定! 回上一頁