从文件读入一个字符串,统计该字符串中单词的个数,单词之间用空格分开,空格数可以是多个。

2025-01-01 16:11:11
推荐回答(1个)
回答1:

//我写的 你看看对不对,我的是统计一个文件中的单词个数

#include
#include
#define IN 1
#define OUT 0
int main()
{
char szFilename[256];
FILE *fp;
printf("input the file:");
scanf("%s",szFilename);
if((fp=fopen(szFilename,"r"))==NULL)
{
printf("the file don't exist!");
exit(1);
}
int flag=OUT;
int c;
int nw=0;
while((c=fgetc(fp))!=EOF)
{
if(c==' ')
{
flag=OUT;
}
else if(OUT==flag)
{
flag=IN;
nw++;
}
}
printf("THe num is:%d\n",nw);

return 0;
}