题解 | #统计字符#

统计字符

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

#include <iostream>
using namespace std;

void count(string s1,string s2) {
    int cnt;
    for(int i = 0;i < s1.length(); i++) {
        cnt = 0;
        for(int j = 0;j < s2.length(); j++) {
            if(s1[i] == s2[j]) {
                cnt++;
            }
        }
        cout << s1[i] << ' ' << cnt << endl;
    }

    return ;  
}

int main() {
    string s1, s2;
    while(getline(cin, s1)) {
        if(s1[0] == '#') break;
        getline(cin, s2);
        count(s1, s2);
    }
    return 0;
}

全部评论

相关推荐

11-27 12:43
已编辑
门头沟学院 C++
点赞 评论 收藏
分享
jack_miller:我给我们导员说我不在这里转正,可能没三方签了。导员说没事学校催的时候帮我想办法应付一下
点赞 评论 收藏
分享
评论
2
收藏
分享
牛客网
牛客企业服务