字符统计2 (sdut oj)


字符统计2

Time Limit: 1000MS  Memory Limit: 65536KB


Problem Description

输入英文句子,输出该句子中除了空格外出现次数最多的字符及其出现的次数。


Input

输入数据包含多个测试实例,每个测试实例是一个长度不超过100的英文句子,占一行。


Output

逐行输出每个句子中出现次数最多的字符及其出现的次数(如果有多个字符的次数相同,只输出ASCII码最小的字符)。


Example Input

I am a student
a good programming problem
ABCD abcd ABCD abcd


Example Output

a 2
o 4
A 2

Hint

 

Author








参考代码


#include
#include
int main()
{
    char s[200];
    int a[200];
    int i,len,max,k;
    while(gets(s))
    {
        memset(a,0,sizeof(a));
        k = 0;
        max = 0;
        len = strlen(s);
        for(i = 0; i < len; i++)
        {
            if(s[i] == ' ')
                continue;
            a[s[i]]++;
        }
        for(i = 0; i < 200; i++)
        {
            if(max < a[i])
            {
                max = a[i];
                k = i;
            }
        }
        printf("%c %d",k,max);
        printf("\n");
    }
    return 0;
}


你可能感兴趣的:(SDUTOJ,实验9-字符数组的运用)