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
26
27
28
29
30
31
32
33
34
35
36 37 38 39 |
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.IOException;
public class No05 {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String str = br.readLine();
int[] alpha = new int[26];
for(int i = 0; i <str.length(); i++) { char ch = str.charAt(i);
if(65 <= ch && ch < 91) {
alpha[ch -'A']++;
} else if(97 <= ch && ch < 123) {
alpha[ch -'a']++;
}
}
int max = 0;
char ch = '?';
for(int i : alpha) {
if(max < i) {
max = i;
ch = (char) (i + 'A');
} else if(max == i) {
ch = '?';
}
}
System.out.println(ch);
} //main
} //class
|
cs |
JAVA. 백준 알고리즘 단계별 문제 7단계(문제 번호 2908) (0) | 2021.06.04 |
---|---|
JAVA. 백준 알고리즘 단계별 문제 7단계(문제 번호 1152) (0) | 2021.06.03 |
JAVA. 백준 알고리즘 단계별 문제 7단계(문제 번호 2675) (0) | 2021.06.01 |
JAVA. 백준 알고리즘 단계별 문제 7단계(문제 번호 10809) (0) | 2021.06.01 |
JAVA. 백준 알고리즘 단계별 문제 7단계(문제 번호 11720) (0) | 2021.05.31 |