AC题解
2023-07-25 13:34:18
发布于:广东
18阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int x[26];
int main(){
string y;
cin>>y;
int max=0;
for(int i=0;i<y.size();i++)x[y[i]-97]+=1;
for(int i=0;i<26;i++)if(x[i]>x[max])max=i;
cout<<char(max+97);
}
这里空空如也
有帮助,赞一个