其他分享
首页 > 其他分享> > 1042 字符统计 (20 分)

1042 字符统计 (20 分)

作者:互联网

水~。

map<char,int> mp;

int main()
{
    string s;
    getline(cin,s);

    for(auto t:s)
        if(isalpha(t))
            mp[tolower(t)]++;

    char c='a';
    for(auto t:mp)
        if(t.se > mp[c])
            c=t.fi;

    cout<<c<<' '<<mp[c]<<endl;
    //system("pause");
    return 0;
}

标签:1042,20,string,字符,auto,mp,fi
来源: https://www.cnblogs.com/fxh0707/p/14409490.html