-
백준 11718,11719 그대로 출력하기 1 2 [C++]알고리즘 2018. 11. 25. 22:24
문제 링크 :
https://www.acmicpc.net/problem/11718
https://www.acmicpc.net/problem/11719
소스코드
#include <iostream>#include <string>using namespace std;int main() {string text;for (;;) {getline(cin, text);if (text == "") break;cout << text << endl;}}#include <iostream>#include <string>using namespace std;int main() {string text;while (getline(cin, text)) {cout << text << endl;}}입력 받는 개수를 몰라도, 위의 두 코드처럼 입력을 받는다면 정상적으로 입력을 받을 수 있습니다.
'알고리즘' 카테고리의 다른 글
백준 11050 이항 계수 1 [C++] - 동적 계획법 (0) 2019.05.27 Kruskal 알고리즘 구현 과제 (0) 2019.05.14 백준 2747 피보나치 수 [C++] (0) 2018.11.25 백준 1021 회전하는 큐 [C++] (0) 2018.11.25 백준 10866 덱 [C++] (0) 2018.11.25