일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 백준 11720
- ㅇ
- meta charset=
- HEAD
- 십진수 8진수
- 정수와 상수
- 자료형
- 백준4344번
- Official髭男dism
- html
- 백준 8958번
- 異端なスター
- !doctype html
- 문자열숫자를 숫자로
- body
- 히라이켄
- 마법이라고 불러도 좋을까?
- 오버플로우
- 魔法っていっていいかな
- 아스키코드
- 십진수 16진수
- 平井堅
- 아스키코드로 숫자 넣기
- React.js
- Today
- Total
목록Programming (65)
갓비니
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
분명히 정답은 똑같이 나오는데 왜 안되는건지 모르겠다.... -> 해결되었다 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() { char word[100]; int alp[26]; fill_n(alp, 26, -1); //이거 유용!! cin >> word; for (int i = 0; i cs
//정답 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 #include using namespace std; int main() { int count; char num[100] = { 0 }; int sum = 0; cin >> count >> num; for (int i = 0; i Colored by Color Scripter 이런식으로 하면 예제3과 같은 매우 크기가 큰 숫자는 적용시킬 수 없다. 심지어 코드도 더 길다,,,
★아스키코드 숫자를 출력하고 싶을 때 char a='A'; int ASC=int(a); ★문자를 숫자로 바꾸고 싶을 때 char a='1'; //문자 1 int number = a - '0' //숫자 1 (모든 문자에서 '0'을 빼주면 된다!) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 //11654 #include using namespace std; int main() { char a; int num; scanf_s("%c", &a); num = (int)a; printf("%d", num); }