VioletaBabel

11719번: 그대로 출력하기 2 본문

백준/백준-C++
11719번: 그대로 출력하기 2
Beabletoet 2017. 1. 23. 13:35

#include<iostream>

#include<string>

using namespace std;

int main()

{

string a;

for (int i = 0; i < 100; ++i)

{

getline(cin, a);

cout << a << endl;

}

}

'백준 > 백준-C++' 카테고리의 다른 글

2920번: 음계  (0) 2017.01.23
8958번: OX퀴즈  (0) 2017.01.23
11718번: 그대로 출력하기  (0) 2017.01.23
2577번: 숫자의 개수  (0) 2017.01.19
1152번: 단어의 개수  (0) 2017.01.19
Comments