#include <stdio.h>#include <string.h>#include <stdbool.h>// 读取文件到字符数组bool read(con...
#include <stdio.h>
#include <string.h>
#include <stdbool.h>
// 读取文件到字符数组
bool read(const char* file,char* str)
{
if( NULL == file || NULL == str)
{
return false;
}
// 以只读方式打开文件
FILE* fp = fopen(file,"r");
if(NULL!=fp)
{
// 用fgets()函数读取文件
char line[128] = "";
while(fgets(line,128,fp)!=NULL)
{
// 将读取得到的字符串保存到目标字符数组中
strcat(str,line);
}
// 关闭文件
fclose(fp);
fp = NULL;
return true;
}
else
{
printf("cannot open %s.",file);
return false;
}
}
int countword(char* text)
{
if(NULL != text)
{
// 循环遍历整个字符数组,统计空格字符以及换行字符数
int i = 0;
int num = 0; // 空格或换行字符数
while('\0' != text[i])
{
// 判断当前字符是否是空格换行字符,
// 如果是,则统计在内
if(' ' == text[i] // 空格
|| '\n' == text[i]) // 换行
{
++num; // 总数加1
}
++i; // 检查下一个字符
}
return num+1; // 返回单词数目
}
else
{
return 0;
}
}
int main(int argc,char* argv[])
{
if(argc != 2)
{
puts("ARGUMENS ERROR. eg. count demo.txt");
return 1;
}
char text[1028*10] = "";
if(read(argv[1],text))
{
int n = countword(text);
// 输出字符串中的单词数,也就是空格数加1
printf("there is(are) %d word(s) in the \"%s\"",n,argv[1]);
}
return 0;
}
学员评论
飞渔吹雪2014-11-05
你感兴趣的课程