Development/Algorithm
[BOJ] 11718. 그대로 출력하기
문제 www.acmicpc.net/problem/11718 11718번: 그대로 출력하기 입력이 주어진다. 입력은 최대 100줄로 이루어져 있고, 알파벳 소문자, 대문자, 공백, 숫자로만 이루어져 있다. 각 줄은 100글자를 넘지 않으며, 빈 줄은 주어지지 않는다. 또, 각 줄은 공백으로 시� www.acmicpc.net 코드 #include #include using namespace std; int main() { string str; ios::sync_with_stdio(false); cin.tie(NULL); while (true) { getline(cin, str); if (str == "") break; cout
2020. 9. 18. 23:31