求整数序列中出现次数最多的数PTA

#include
int main(){
int n,arr[1001];
scanf("%d",&n);
int max=0,count,num;
for(int i=0;imax){
max=count;
num=arr[i];
}
}
printf("%d %d",num,max);
return 0;
}
本题要求统计一个整型序列中出现次数最多的整数及其出现次数。
输入

求整数序列中出现次数最多的数PTA最先出现在Python成神之路

版权声明:
作者:lichengxin
链接:https://www.techfm.club/p/17859.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>