统计输入的行数,单词数和字符数
统计输入的行数,单词数和字符数
#include<stdio.h> #define IN 1 /*在单词内*/ #define OUT 0 /*在单词外*/ //统计输入的行数,单词数和字符数 int main(){ int c, nl, nw, nc, state; nw=nl=nc=0; state=OUT; while((c=getchar())!=EOF){ nc++; if(c=='\n') nl++; if(c=='\n' || c=='\t' || c==' '){ state=OUT; } else if(state==OUT){ state=IN; nw++; } } printf("%d %d %d\n",nl,nw,nc); getchar(); getchar(); return 0; }
实验结果