일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 백준 8958번
- 백준4344번
- 오버플로우
- 平井堅
- !doctype html
- 십진수 16진수
- 정수와 상수
- 마법이라고 불러도 좋을까?
- 아스키코드
- body
- HEAD
- Official髭男dism
- meta charset=
- 문자열숫자를 숫자로
- React.js
- ㅇ
- html
- 異端なスター
- 아스키코드로 숫자 넣기
- 십진수 8진수
- 히라이켄
- 백준 11720
- 자료형
- 魔法っていっていいかな
- Today
- Total
목록Programming/코딩 문제 풀이 (33)
갓비니
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 #include #include #include //atoi를 위한것 using namespace std; int main() { string A, B; string N_A="000", N_B="000"; cin >> A >> B; for (int i = 0; i atoi(N_B.c_str()))cout
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 #include #include using namespace std; int main() { string word; int count = 1; getline(cin, word); for (int i = 0;i
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 #include using namespace std; int main() { string word; int a[27] = { 0 }; int max = 0; int index; int count = 0; cin >> word; for (int i = 0; i= 97) { word[i] = word[i] - 32; } a[word[i] - 65]++; } for (int i = 0; i
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 #include #include using namespace std; int main() { int count; int repeat; string word; cin >> count; for (int i = 0; i > repeat; cin >> word; for (int j = 0; j