No Rules Rules

그대로 출력하기 (feat. 백준, 11718번) 본문

생활/코테

그대로 출력하기 (feat. 백준, 11718번)

개발하는 완두콩 2022. 9. 28. 12:05
728x90
반응형

그대로 출력하기
https://www.acmicpc.net/problem/11718

 

11718번: 그대로 출력하기

입력이 주어진다. 입력은 최대 100줄로 이루어져 있고, 알파벳 소문자, 대문자, 공백, 숫자로만 이루어져 있다. 각 줄은 100글자를 넘지 않으며, 빈 줄은 주어지지 않는다. 또, 각 줄은 공백으로 시

www.acmicpc.net

 

반응형

 

// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
#include <string>
using namespace std;
int main(){
    ios::sync_with_stdio(false), cin.tie(NULL);
    string str;
    while(getline(cin, str))
        cout << str << "\n";
    return 0;
}
// *&)*@*

 

한 줄을 입력받고 출력하는 문제입니다.

728x90
반응형
Comments