일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 리눅스
- istringstream
- 프로그래머스
- 카카오인턴십
- 분할정복
- 부주상골수술후기
- ChatGPT
- 부주상골수술
- 백준
- 세브란스
- 독학
- 독일어
- SWIFT
- sql
- c++
- 카카오인턴
- BFS
- 구현
- 롯데정보통신
- DFS
- dp
- 부주상골
- 코딩테스트
- 코테
- 독일어독학
- 스택
- IOS
- SQLD
- 부주상골증후군
- 카카오코테
- Today
- Total
목록istringstream (2)
슈뢰딩거의 고등어
c++은 python 같은 언어에 비해 문자열을 다루는게 까다롭다. 문자열을 공백 또는 특수문자를 기준으로 분리하는 방법에 대해 알아보자. sscanf(문자열.c_str(), 문자열 형태, 인자); #include using namespace std; int main() { int y, m, d, hh, mm, ss, zzz; double elapsed_double; sscanf(lines[i].c_str(), "%d-%d-%d %d:%d:%d.%d %lfs", &y, &m, &d, &hh, &mm,&ss, &zzz, &elapsed_double); } istringstream #include #include #include using namespace std; int main() { string str..
https://programmers.co.kr/learn/courses/30/lessons/72412 s[1] >> str >> s[2] >> str >> s[3]; cout s[2] >> s[3]; cout s[2] >> s[3] >> str; addCases(s, (int)stoi(str)); } for(auto it=scores.begin(); it!=scores.end(); it++) sort(it->second.begin(), it->second.end()); for(int i=0; i> s[0] >> str >> s[1] >> str >> s[2] >> str >> s[3] >> str; score = stoi(str); vector v = scores[s[0]+s[1]+s[2]+s[3]]; ..