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(au
阅读全文
posted @ 2021-09-25 20:16
posted @ 2021-09-25 20:16
posted @ 2021-09-25 20:13
posted @ 2021-09-24 12:32