본문 바로가기

Algorithm

(C++) - 백준(BOJ) 11718번 : 그대로 출력하기 답

반응형
#include <iostream>
#include <string>
using namespace std;
int main() {
    string word;
    while (1)
    {
        getline(cin, word);
        if (word == "")
            break;
        cout << word << '\n';
    }
}