70,040
社区成员
发帖
与我相关
我的任务
分享#include<stdio.h>
#define IN 1
#define OUT 0
main(){
int c,nl,nw,nc,state;
state=OUT;
nl=nw=nc=0;
while((c=getchar())!=EOF){
++nc;
if(c=='\n')
++nl;
if(c==' '||c=='\n'||c=='\t')
state=OUT;
else if(state==OUT){
state=IN;
++nw;
}
}
printf("%d %d %d\n",nl,nw,nc);
}
这样的,是怎样统计的呢,我需要按什么吗 ,为什么我输入几个字母或者数字按回车没反应,运行其他统计程序的时候按回车有时候还有笑脸,总之就是,我不明白怎么样显示我统计的个数?说的有点乱,求大神给小白解惑,谢谢。