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 |
Tags
- 異端なスター
- 십진수 8진수
- 아스키코드
- HEAD
- Official髭男dism
- 백준 8958번
- meta charset=
- 平井堅
- 마법이라고 불러도 좋을까?
- React.js
- 백준4344번
- 魔法っていっていいかな
- 문자열숫자를 숫자로
- ㅇ
- !doctype html
- 오버플로우
- 정수와 상수
- body
- 백준 11720
- 자료형
- 히라이켄
- 십진수 16진수
- 아스키코드로 숫자 넣기
- html
Archives
- Today
- Total
목록Programming (65)
갓비니

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

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

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