题解
2024-10-24 19:57:04
发布于:四川
3阅读
0回复
0点赞
#include <iostream>
#include <string>
using namespace std;
int main() {
string s;
cin >> s;
int count[26] = {0};
for (char c : s) {
count[c - 'a'];
}for (int i = 0; i < 26; i) {
if (count[i] > 0) {
cout << (char)(i + 'a') << ':' << count[i] << '\n';
}
}
return 0;
}
这里空空如也
有帮助,赞一个