Description
给定一个只有小写英文字母组成的字符串,串长为n。请你编写程序求出这个字符串中出现次数最多的字母。
Sample Input
5 acmcs
Sample Output
c
#include <iostream>
#include <string.h>
using namespace std;
int main()
{
char s[101];
char b;
int c[26];
int n, i, max, max_i;
while (cin>>n)
{