文章

93

粉丝

56

获赞

250

访问

14.7k

头像
统计字符 题解:暴力
P1320 浙江大学机试题
发布于2025年3月13日 20:49
阅读数 117

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

int main()
{
    string str1;
    string str2;
    while(getline(cin,str1))
    {
        if(str1[0]=='#')break;
        getline(cin,str2);
        for(int i=0;i<str1.size();i++)
        {
            int count=0;
            for(int j=0;j<str2.size();j++)
            {
                if(str1[i]==str2[j])count++;
            }
            cout<<str1[i]<<" "<<count<<endl;
        ...

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发