问题标题: 酷町堂:1476

0
0
王浩然
王浩然
修练者
修练者

题目链接: 酷町堂:1476

#include<iostream>
using namespace std;
string s;
int t[150],maxn;
char c;
int main(){
    cin>>s;
    for(int i=0;i<s.size();i++){
        t[s[i]]++;
    }
    for(int i=0;i<=s.size();i++){
        if(t[s[i]]>maxn){
            maxn=t[s[i]];
            c=s[i];
        }
    }
    cout<<c<<maxn;
    return 0
}


0
0
0
0
我要回答