文章
11
粉丝
70
获赞
0
访问
6.6k
#include <cstdio>
using namespace std;
#include <string.h>
#include <iostream>
#include <map>
#include <stdlib.h>
int main() {
map<char, int>M;
for (int i = 0; i < 26; i++) {
M['A' + i] = 0;
}
char s[1000];
gets(s);
int sl = strlen(s);
for (int i = 0; i < sl; i++) {
if (s[i] >= 'A' && s[i] <= 'Z') {
M[s[i]]++;
}
}
//遍历map
for (auto i : M) {
cout << i.first << ":" << i.second << endl;
}
}
登录后发布评论
暂无评论,来抢沙发