统计输入行数
# include<stdio.h> main () { int c,nl; nl=0; while ((c=getchar())!=EOF) { if(c==' ') ++nl; } printf("%d ",nl); }
单词计数 统计输入的函数nl 单词数nw 字符数nc
# include<stdio.h> //单词计数 统计输入的函数nl 单词数nw 字符数nc #define IN 1 #define OUT 0 main () { int c,nl,nw,nc,state; nl=nc=nw=0; state=OUT; while ((c=getchar())!=EOF) { ++nc;//字符数 if(c==' ') ++nl;//统计行数 if(c==' ' || c== ' ' || c==' ' ) state =OUT; else if(state ==OUT) { state =IN; ++nw;//单词数 } } printf("%d %d %d ",nl,nw,nc); }