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
- 자료형
- 문자열숫자를 숫자로
- ㅇ
- 平井堅
- React.js
- 히라이켄
- 아스키코드
- 오버플로우
- Official髭男dism
- meta charset=
- 백준4344번
- 십진수 8진수
- !doctype html
- html
- 십진수 16진수
- 백준 8958번
- 마법이라고 불러도 좋을까?
- 백준 11720
- 異端なスター
- body
- HEAD
- 정수와 상수
- 魔法っていっていいかな
- 아스키코드로 숫자 넣기
Archives
- Today
- Total
갓비니
string subscript out of range / C++ 에러 본문
간단한 에러이다.
범위를 벗어났다는 것임
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#include <iostream>
#include <string>
using namespace std;
int main() {
int count;
int repeat;
string word;
cin >> count;
for (int i = 0; i < count; i++) {
cin >> repeat;
cin >> word;
for (int j = 0; j < word.size(); j++) {
for (int k = 0; k < repeat; k++) {
cout << word[j];
}
}
cout << "\n";
}
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
|
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs |
sizeof(word) --> word.size() 바꾸었더니 해결되었다.
'Programming > C++' 카테고리의 다른 글
C++ STL (Standard Template Library) - 이차원 vector (0) | 2020.07.04 |
---|---|
** C++ STL (Standard Template Library) - vector (가변길이의 배열) (0) | 2020.07.03 |
C++ Template : 템플릿, 제너릭 타입 (0) | 2020.07.03 |
C++ STL (Standard Template Library) 개념 (0) | 2020.04.27 |
[C++ 복습]1. 기초 (cin, cout...) (0) | 2018.01.12 |