빈줄이 담겨진 string 입력을 받을 때
2019. 8. 20. 23:10ㆍ알고리즘/암기
https://www.acmicpc.net/problem/9207 해당 문제의 입력을 받을 때 빈줄을 처리해야 한다
답은 string 입력은 공백 버퍼를 모두 처리해주고 받기 때문에, 빈줄 처리를 고려할 것 없이 받아도 무방하다
#include <string>
#include <iostream>
using namespace std;
int main(void) {
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
int tc;
cin >> tc;
while (tc--) {
string s;
for (int i = 0; i < 5; i++) {
cin >> s;
cout << s << '\n';
}
}
return 0;
}
'알고리즘 > 암기' 카테고리의 다른 글
위상정렬에서 BFS로 사이클 검사하는 방법 (0) | 2019.08.27 |
---|---|
pow를 지양해야 하는 이유 (0) | 2019.08.23 |
해시 hash (0) | 2019.08.13 |
STL 혼합 선택 (0) | 2019.08.10 |
3차원 vector 초기화 (0) | 2019.08.10 |