解题思路:
注意事项:
参考代码:
#include <iostream>
#include <deque>
#include <algorithm>
#include <numeric>
#include <iterator>
#include <string>
#include <cmath>
#include <cstdlib>
#include <string.h>
using namespace std;
int a[26];
int main()
{
char ch;
while((ch=cin.get())!='#')
{
if(ch=='\n'||ch==' ')
{
continue;
}
else if(ch=='a')
{
a[0]++;
}
else if(ch=='b')
{
a[1]++;
}
else if(ch=='c')
{
a[2]++;
}
else if(ch=='d')
{
a[3]++;
}
else if(ch=='e')
{
a[4]++;
}
else if(ch=='f')
{
a[5]++;
}
else if(ch=='g')
{
a[6]++;
}
else if(ch=='h')
{
a[7]++;
}
else if(ch=='i')
{
a[8]++;
}
else if(ch=='j')
{
a[9]++;
}
else if(ch=='k')
{
a[10]++;
}
else if(ch=='l')
{
a[11]++;
}
else if(ch=='m')
{
a[12]++;
}
else if(ch=='n')
{
a[13]++;
}
else if(ch=='o')
{
a[14]++;
}
else if(ch=='p')
{
a[15]++;
}
else if(ch=='q')
{
a[16]++;
}
else if(ch=='r')
{
a[17]++;
}
else if(ch=='s')
{
a[18]++;
}
else if(ch=='t')
{
a[19]++;
}
else if(ch=='u')
{
a[20]++;
}
else if(ch=='v')
{
a[21]++;
}
else if(ch=='w')
{
a[22]++;
}
else if(ch=='x')
{
a[23]++;
}
else if(ch=='y')
{
a[24]++;
}
else if(ch=='z')
{
a[25]++;
}
}
for(int i=0;i<26;i++)
{
printf("%c %d\n",'a'+i,a[i]);
}
return 0;
}
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题6.9 (C语言代码)浏览:761 |
C语言程序设计教程(第三版)课后习题5.6 (C语言代码)浏览:913 |
DNA (C语言代码)浏览:837 |
链表数据求和操作 (C语言代码)浏览:1035 |
C语言程序设计教程(第三版)课后习题7.3 (C语言代码)浏览:420 |
C语言程序设计教程(第三版)课后习题7.5 (C语言代码)浏览:727 |
C语言训练-斐波纳契数列 (C语言代码)浏览:644 |
计算质因子 (Java代码)浏览:789 |
【密码】 (C语言代码)浏览:433 |
C语言程序设计教程(第三版)课后习题8.5 (C语言代码)浏览:587 |