参考代码:
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const ll N=1e5;
ll tong[N];
int main()
{
for(int i=1; i<=10; i++)
{
ll p;
cin>>p;
tong[p]++;
}
for(int i=1; i<=10; i++)
cout<<tong[i]<<' ';
cout<<endl;
ll maxx=0,pos;
for(int i=1; i<=10; i++)
{
if(tong[i]>maxx)
{
maxx=tong[i];
pos=i;
}
}
cout<<pos;
return 0;
}
0.0分
0 人评分
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:689 |
C二级辅导-统计字符 (C语言代码)浏览:782 |
点我有惊喜!你懂得!浏览:1437 |
C语言程序设计教程(第三版)课后习题8.3 (C语言代码)浏览:677 |
C语言程序设计教程(第三版)课后习题6.4 (C语言代码)浏览:623 |
2003年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:561 |
小明A+B (C语言代码)浏览:1317 |
C语言程序设计教程(第三版)课后习题9.8 (C语言代码)浏览:646 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:468 |
大家好,我是验题君浏览:604 |