c语言初步经典题17---统计一个文件的字符个数

题目:

统计一个文本文件中数字、空格、字母出现的次数,以及文件的字节数,并将结果输出,文本文件名在程序中输入(请自建文本文件完成测试)。

#include 
#include 

int main()
{
    FILE *fpr;
    char name[100] = {
    0};//存储路径名
    int ch;
    int number = 0;
    int character = 0;
    int space = 0;
    int total = 0;

    scanf("%s",name);

    if((fpr = fopen(name,"r")) == NULL)
    {
        printf("Can't open %s\n",name);
        exit(1);
    }
    while((ch = fgetc(fpr)) != EOF)
    {
       if(ch>=48 &&ch<=57)//数字的ASCII码
       {
            number++;
       }
       if((ch>=65&&ch<=90) || (ch>=97&&ch<=122))//字母的ASCII码
       {
           character++;
       }
       if(ch == 32)//空格的ASCII码
       {
           space++;
       }
       total++;
    }
    printf("数字 = %d 字母 = %d 空格 = %d 字符数 = %d\n",number,character,space,total);
    return 0;
}

使用软件:Code::Blocks
运行结果:
c语言初步经典题17---统计一个文件的字符个数_第1张图片

你可能感兴趣的:(c语言经典题,c语言)