问题描述:
试题编号: | 201312-1 |
试题名称: | 出现次数最多的数 |
时间限制: | 1.0s |
内存限制: | 256.0MB |
问题描述: |
问题描述
给定n个正整数,找出它们中出现次数最多的数。如果这样的数有多个,请输出其中最小的一个。
输入格式
输入的第一行只有一个正整数n(1 ≤ n ≤ 1000),表示数字的个数。
输入的第二行有n个整数s 1, s 2, …, s n (1 ≤ s i ≤ 10000, 1 ≤ i ≤ n)。相邻的数用空格分隔。
输出格式
输出这n个次数中出现次数最多的数。如果这样的数有多个,输出其中最小的一个。
样例输入
6
10 1 10 20 30 20
样例输出
10
|
参考代码:
import java.util.Scanner; /** * * @Author: Dina * @Time: 2017年9月14日 * @Description:出现次数最多的数 * @Score:100 */ public class _1312_1_TheHighestNumberOfOccurrences { public static void main(String[] args) { Scanner src=new Scanner(System.in); int n=src.nextInt(); int count=0,max=0,num=0; int[] array=new int[n]; for (int i = 0; i < array.length; i++) { array[i]=src.nextInt(); } for (int i = 0; i < array.length; i++) { for (int j = 0; j < array.length; j++) { if(array[j]==array[i]){ count++; } if(count>max){ max=count; num=array[j]; } if(count==max){ if(num>array[i]) num=array[i]; } }count=0; }System.out.println(num); src.close(); } }
提交可通过: