문제

https://www.acmicpc.net/problem/11718

걸린 시간

-

풀이

C++

#include <bits/stdc++.h>
#define INF 987654321
using namespace std;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(NULL);
    string s;
    while(getline(cin, s))
        cout << s << "\n";
    return 0;
}

간혹 문제의 입력 개수가 자연수로 주어지지 않고, "최대 몇 줄로 이루어져 있다" 혹은 "몇 줄을 초과하지 않는다"처럼 조건이 주어질 때가 있다.

이는 콘솔에서 ctrl+Z 가 입력될 때까지 반복해서 입력을 받으라는 뜻이다.

댓글