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");
相关文章
相关标签/搜索