일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 십진수 16진수
- ㅇ
- html
- 마법이라고 불러도 좋을까?
- meta charset=
- !doctype html
- 문자열숫자를 숫자로
- 자료형
- 오버플로우
- 십진수 8진수
- 히라이켄
- React.js
- 異端なスター
- 백준 8958번
- 백준 11720
- 魔法っていっていいかな
- 아스키코드로 숫자 넣기
- body
- HEAD
- 백준4344번
- 平井堅
- Official髭男dism
- 정수와 상수
- 아스키코드
- Today
- Total
목록전체 글 (86)
갓비니
0. C++'s Standard Library 1) Entire C standard library 2) I/O stream library (std::cin / std::ciout / stringstreams / fstreams 등) 3) Standard Template Library 4) miscellaneous library (strings, exceptions, allocation 등...) 1. STL이란 STL : 자료구조와 Algoritm을 Template로 제공하는 라이브러리 자료구조를 내가 코딩해서 만들지 않아도 사용할 수 있게 해주는 라이브러리이다. STL은 reference가 아닌 value를 저장한다. STL을 사용하면 여러가지 copy를 만들게 된다. 만일 이를 원치 않을 경우 포인터..
간단한 에러이다. 범위를 벗어났다는 것임 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 cs sizeof(word) --> word.size() 바꾸었더니 해결되었다.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 #include #include #include using namespace std; int main() { vector V = { "c=", "c-", "dz=", "d-", "lj", "nj", "s=", "z=" }; string croatia; int index=0; cin >> croatia; 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() { string word; int time = 0; 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 #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
분명히 정답은 똑같이 나오는데 왜 안되는건지 모르겠다.... -> 해결되었다 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