1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
import java.util.ArrayList;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int[] arr = new int[10];
for(int i =0;i<10;i++) {
arr[i] = sc.nextInt();
}
int[] cnt = new int[10];
for(int i =0;i<10;i++) {
cnt[arr[i]]++;
}
int chi = 0;
int chicnt = 0;
for(int i =0;i<10;i++) {
if(chicnt< cnt[i]) {
chicnt = cnt[i];
chi = i;
}
}
System.out.println("최빈수는 "+ chi+ "최빈수가 나온 횟수는 "+ chicnt);
}
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
|
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs |
'프로그램 만들기' 카테고리의 다른 글
Java) 학생 학번 확인 프로그램 (0) | 2020.04.25 |
---|---|
Java) 홀짝분리기 구현 (0) | 2020.04.22 |