字母统计 题解:
```c++
#include<bits/stdc++.h>
using namespace std;
int tmp[100];
int main() {
char s[105];
while(cin >> s) {
int len = strlen(s);
for (int i = 0; i < len; i++) {
tmp[s[i]]++;
}
for (int i = 'A'; i <= 'Z';i ++) {
printf("%c:%d\n", i, tmp[i]);
}
}
return 0;
}
```
映射解法
登录后发布评论
暂无评论,来抢沙发