P1292 解题思路分享
#include <bits/stdc++.h>
using namespace std;
int main()
{
map<char,int> m;
string s;
while(cin>>s){
for(int i=0; i<s.size(); i++){
if(s[i]>=65 && s[i]<=90)
m[s[i]]++;
}
char k='A';
for(int i=0; i<=90-65; i++){
cout<<k++<<":"<<m['A'+i]<<endl;
}
}
}
登录后发布评论
暂无评论,来抢沙发