250x250
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
- 힙덤프
- GC로그수집
- string
- Properties
- NIO
- scanner
- 스프링부트
- JPA
- spring boot
- map
- Java
- date
- Calendar
- set
- math
- javascript
- union_find
- 큐
- sql
- alter
- CSS
- 리소스모니터링
- Union-find
- dfs
- List
- deque
- priority_queue
- html
- 스택
- BFS
Archives
- Today
- Total
목록백준 #baekjoon #c++ (1)
매일 조금씩
[C++] 백준 10822번 : 더하기
string으로 입력받은 숫자 더하기 2가지 과정이 필요하다. 1. string으로 하나씩 입력된 숫자들을 하나로 묶기 - substr() substr(시작위치) substr(시작위치, 개수) 2. 묶은 숫자를 int로 바꾸기 - stoi() stoi => string to int #include #include using namespace std; int main() { string s; string t; int sum = 0, num = 0; cin >> s; for (int i = 0; i < s.size(); i++) { if (s[i] == ',') { sum += stoi(t); t = ""; } else { t += s[i]; } } cout
알고리즘
2019. 9. 4. 23:13