가장 많이 출현한 수를 출력하시오.
1 2 2 3 1 4 2 2 4 3 5 3 2
package _2;
import java.util.*;
public class Main {
public static void main(String[] args) {
// TODO Auto-generated method stub
int[] number = {1,2,2,3,1,4,2,2,4,3,5,3,2};
int[] count =new int[1000];
int max =0;
int answer=0;
for(int i: number ) count[i]++;
for(int i = 0;i<count.length;i++)
{
if(count[i]>max)
{
max=count[i];
answer=i;
}
}
System.out.println("최고 빈도의 수는 "+answer+"입니다.");
}
}