반응형
<코드>
#include<iostream>
#include<cstdio>
#include<string>
#include<algorithm>
using namespace std;
string s;
int main()
{
while (getline(cin, s))
{
cout << s << endl;
}
}
풀이 방법
EOF에 도달할 경우 while(getline(cin, s))에서 루프를 탈출하게 됩니다.
반응형
'🧩PS > 🥈Nomal' 카테고리의 다른 글
[C/C++] 백준 12015번 - 가장 긴 증가하는 부분 수열 2 (LIS) (0) | 2020.12.23 |
---|---|
[C/C++] 백준 2110번 - 공유기 설치 (0) | 2020.12.22 |
[C/C++] 백준 11718번 - 그대로 출력하기 (0) | 2020.12.20 |
[C/C++] 백준 1264번 - 모음의 개수 (0) | 2020.12.20 |
[C/C++] 백준 9872번 -Record Keeping (0) | 2020.12.20 |