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
- 平井堅
- 정수와 상수
- body
- 자료형
- 아스키코드로 숫자 넣기
- !doctype html
- 異端なスター
- 오버플로우
- React.js
- 마법이라고 불러도 좋을까?
- 백준 11720
- 문자열숫자를 숫자로
- HEAD
- html
- 히라이켄
- meta charset=
- ㅇ
- 아스키코드
- 백준4344번
- 십진수 16진수
- 백준 8958번
- Official髭男dism
- 魔法っていっていいかな
- 십진수 8진수
Archives
- Today
- Total
목록분류 전체보기 (86)
갓비니
★코딩 문제 연습(8단계 / 백준 2292번 - 벌집) C++
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 #include using namespace std; int main() { int n; int result; int i = 0; cin >> n; for (result = 2; result
Programming/코딩 문제 풀이
2021. 1. 28. 01:13
코딩 문제 연습(8단계 / 백준 1712번 - 손익분기점) C++
1 2 3 4 5 6 7 8 9 10 11 12 13 14 #include using namespace std; int main() { int A, B, C; cin >> A >> B >> C; if (B >= C) { cout
Programming/코딩 문제 풀이
2021. 1. 27. 19:56
★코딩 문제 연습(7단계 / 백준 1316번 - 그룹단어 체커) 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 #include #include using namespace std; int main() { int number = 0; int j = 0; int count = 0; string str; cin >> number; for (int i = 0; i> str; int switch_group[26] = { 0, }; switch_group[str[0] - 97] = 1; for (j = 1; j
Programming/코딩 문제 풀이
2021. 1. 25. 20:43