#include <iostream>
#include <stdint.h>
#include <cstring>

using namespace std;


int main()
{
    char str[1000];
    char ch1, ch2;
    uint32_t num1, num2;

    while(cin >> str){
        num1 = 0;
        for(uint32_t i = 0; i<strlen(str);){
            ch2 = str[i];
            num2 = 0;                                                                  // 如果 num2 = 1  下面 while 就要變 i+1 < strlen(str) && str[i+1] == ch2 

            while(i < strlen(str) && str[i] == ch2){                        // 就必須額外判別最後一個 char 是否與前面一樣,相當麻煩
                i++;
                num2++;
            }

            if(num2 > num1){
                num1 = num2;
                ch1 = ch2;
            }

        }

        cout << ch1 << " " << num1 << endl;
    }
}
 

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 大神(偽) 的頭像
    大神(偽)

    大神的世界

    大神(偽) 發表在 痞客邦 留言(0) 人氣()