题解 | 统计字符

统计字符

https://www.nowcoder.com/practice/4ec4325634634193a7cd6798037697a8

#include <iostream>
#include<map>
using namespace std;

int main() {
    string c;
    string b;
    while (getline(cin, c)) {
        map<char, int>m;
        if(c=="#")break;
        getline(cin, b);
        for (auto it : b) {
            
            ++m[it];
        }
        for (auto it : c) {
            cout << it << " " << m[it] << endl;
        }
    }
}
// 64 位输出请用 printf("%lld")

全部评论

相关推荐

02-04 17:01
南昌大学 Java
牛客96763241...:拿插件直接投就完了,这玩意看运气的
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务