C++ 代码
#include <bits/stdc++.h>
using namespace std;
map<char,int>vis;
int main()
{
ios::sync_with_stdio(false);
string s;cin>>s;
int mx=0;
for(int i=0;s[i];i++)
{
vis[s[i]]++;
mx=max(mx,vis[s[i]]);
}
for(auto it:vis)
if(it.second==mx)
{printf("%c\n",it.first);break;}
printf("%d\n",mx);
return 0;
}