题解
2023-07-07 12:17:35
发布于:上海
22阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
map<char,int> m;
int main(){
string s;
getline(cin,s);
int len=s.length();
for(int i=0;i<len;i++){
if(s[i]>='A' and s[i]<='Z'){
s[i]+=32;
}
}
for(int i=0;i<len;i++){
if(s[i]>='a' and s[i]<='z'){
m[s[i]]++;
}
}
map<char,int>::iterator it;
for(it=m.begin();it!=m.end();it++){
cout<<it->first<<":"<<it->second<<endl;
}
return 0;
}
这里空空如也
有帮助,赞一个