一.题目描述
二.问题分析
//单词分析
#include <iostream>
using namespace std;
const int N=1e4+2;
char s[N];
int c[26]={0};
int main(int argc, const char * argv[]) {
ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
cin>>s;
int max=0,i=0;
char x='a';
while(s[i]){
c[s[i++]%97]++;
}
for(int j=0;j<26;j++){
if(c[j]>max){
max=c[j];
x=j+'a';
}
}
cout<<x<<'\n';
cout<<max<<'\n';
return 0;
}