浅浅苏音


私信TA

用户名:dotcpp0660652

访问量:4376

签 名:

666666

等  级
排  名 603
经  验 4211
参赛次数 15
文章发表 112
年  龄 12
在职情况 学生
学  校
专  业

  自我简介:

解题思路:

注意事项:

参考代码:

#include <bits/stdc++.h>

using namespace std;

int tong[200];

int main()

{

//输入随机个数字

    char c;

    while(cin>>c)

    {

       tong[c]++;

    }

//求最大值

    int maxx=0;

   char maxxchar;

    for(int i=0; i<=199; i++)

    {

        if(tong[i]>maxx)

        {

            maxx=tong[i];

            maxxchar=i;

        }

    }

   cout<<maxxchar<<' '<<maxx;

    return 0;

}


 

0.0分

0 人评分

  评论区

  • «
  • »