L1-003 个位数统计 (15 point(s))

没啥好说的又写了一次的水题。

#include <bits/stdc++.h>
using namespace std;

int main(){
	string str;
	cin >> str;
	map<char, int> ans;
	for(auto s: str) ans[s]++;
	for(auto a: ans) 
		cout << a.first << ":" << a.second << endl;
} 
上一篇:Html_Day_003


下一篇:003、面向对象(一):类和对象