반응형
문제
코드
#include<iostream>
#include<string>
using namespace std;
int main() {
string str;
ios::sync_with_stdio(false);
cin.tie(NULL);
while (true) {
getline(cin, str);
if (str == "")
break;
cout << str << '\n';
}
return 0;
}
반응형
'Development > Algorithm' 카테고리의 다른 글
[BOJ] 11726. 2 x n 타일링 (0) | 2020.09.20 |
---|---|
[BOJ] 1463. 1로 만들기 (0) | 2020.09.20 |
[BOJ] 13460. 구슬 탈출 2 (0) | 2020.09.20 |
[SWEA] 1206. [S/W 문제해결 기본] 1일차 - View (0) | 2020.09.19 |
[SWEA] 2072. 홀수만 더하기 (0) | 2020.09.18 |