Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- meta charset=
- 히라이켄
- 백준4344번
- 십진수 8진수
- 자료형
- Official髭男dism
- 마법이라고 불러도 좋을까?
- 아스키코드
- React.js
- body
- 아스키코드로 숫자 넣기
- 백준 11720
- 오버플로우
- 平井堅
- ㅇ
- 異端なスター
- !doctype html
- 십진수 16진수
- 문자열숫자를 숫자로
- 백준 8958번
- 魔法っていっていいかな
- html
- HEAD
- 정수와 상수
Archives
- Today
- Total
갓비니
★2020/04/18 코딩 문제 연습 (7단계 / 백준 1157) C++ 본문
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
40
41
|
#iclude <iostream>
#include<string>
using namespace std;
int main() {
string word;
int a[27] = { 0 };
int max = 0;
int index;
int count = 0;
cin >> word;
if (word[i] >= 97) {
word[i] = word[i] - 32;
}
a[word[i] - 65]++;
}
for (int i = 0; i<26; i++) {
if (max < a[i]) {
max = a[i];
index = i;
}
}
for (int i = 0; i<26; i++) {
if (i != index) {
if (max == a[i]) count++;
}
}
if (count != 0) cout << "?\n";
else cout << (char)(index + 65) << "\n";
return 0;
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
|
'Programming > 코딩 문제 풀이' 카테고리의 다른 글
2020/04/20 코딩 문제 연습(7단계 / 백준 2908번) C++ / atoi, string을 int형으로 (0) | 2020.04.21 |
---|---|
2020/04/19 코딩 문제 연습(7단계 / 백준 1152번) C++ / 띄어쓰기도 string에 저장하고 싶을 때 getline(), .at() (0) | 2020.04.21 |
2020/04/17 코딩 문제 연습 (7단계 / 백준 2675번) C++ (0) | 2020.04.17 |
★2020/04/16 코딩 문제 연습 ( 7단계 / 백준 10809번) C++ 해결 (0) | 2020.04.16 |
2020/04/15 코딩 문제 연습 (7단계 / 백준 11720번) C++ 아스키코드 (0) | 2020.04.15 |