读取一个文件中的字符,统计每个字符出现的次数

 1 //统计每个字符出现的次数
 2 #include<stdio.h>
 3 #include<stdlib.h>
 4 #include<string.h>
 5 
 6 int main()
 7 {
 8     FILE *fp_read;
 9     char ch;
10     int count[26];
11     int index;
12     fopen_s(&fp_read,"E:\\first.txt","r");
13     memset(count,0,sizeof(count));
14     if(NULL == fp_read)
15     {
16         printf("Can not open the file!\n");
17         system("pause");
18         return 0;
19     }
20 
21     while(!feof(fp_read))
22     {
23         ch = fgetc(fp_read);
24         if(ch >= 'a' && ch <= 'z')
25             count[ch - 'a']++;
26     }
27     for(index = 0; index < 26; index++)
28         if(count[index] != 0)
29             printf("%c:\t%d\n",index+97, count[index]);
30 
31     fclose(fp_read);
32 
33     system("pause");
34     return 0;
35 }

 

转载于:https://www.cnblogs.com/cpsmile/p/4776870.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值