统计字符串中每个英文字母的个数
题目:编程序,提示用户输入一任意长度的字符串,输出此字符串中每个英文字母的个数。
源程序代码:
#include<iostream>
#include<string>
using namespace std;
int main()
{
cout<<"请输入您要统计的字符串:"<<endl;
string s;
getline(cin,s);
int count[26];
memset(count,0,sizeof(count));
for(int i=0;i!=s.size();++i)
{
if(s[i]>='a'&&s[i]<='z')
count[s[i]-'a']++;
else if(s[i]>='A'&&s[i]<='Z')
count[s[i]-'A']++;
}
char ch='a';
for(int j=0;j!=26;++j)
{
cout<<ch<<"的个数为:"<<count[j]<<endl;
ch++;
}
}
源程序代码:
#include<iostream>
#include<string>
using namespace std;
int main()
{
cout<<"请输入您要统计的字符串:"<<endl;
string s;
getline(cin,s);
int count[26];
memset(count,0,sizeof(count));
for(int i=0;i!=s.size();++i)
{
if(s[i]>='a'&&s[i]<='z')
count[s[i]-'a']++;
else if(s[i]>='A'&&s[i]<='Z')
count[s[i]-'A']++;
}
char ch='a';
for(int j=0;j!=26;++j)
{
cout<<ch<<"的个数为:"<<count[j]<<endl;
ch++;
}
}
更多原创技术内容,可以通过公众号「闷骚的程序员」订阅:
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步