文章
105
粉丝
69
获赞
117
访问
61.4k
#include<bits/stdc++.h>
using namespace std;
unordered_map<char, int> res;
int main()
{
string str;
getline(cin, str);
for(int i = 0; i < str.size(); i ++)
{
if(str[i] >= 'A' && str[i] <= 'Z' )
res[str[i] + 32] ++;
if(str[i] >= 'a' && str[i] <= 'z' )
res[str[i]] ++;
}
int ans = 0;
char c;
for(auto i : res)
{
ans = max(ans, i.second);
if(ans == i.second) c = i.first;
}
cout << c << ' ' << ans;
return 0;
}
登录后发布评论
暂无评论,来抢沙发