C語言程序設計(第二版)練習1-12

#include <stdio.h> #define IN 1 #define OUT 0 main() { int c,state; state=OUT; while((c = getchar()) != EOF) { if(c == '\n' || c == '\t' || c == ' ') { if(state == IN) printf("\n");
相關文章
相關標籤/搜索