입력 받은 대로 출력하는 프로그램을 작성하시오.
입력 받은 대로 출력하는 프로그램을 작성하시오.
이 문제는 입력받은게 텅 빌 때까지 입력받은걸 출력하면 된다.
getline 함수로 string 변수에 받고 empty가 될 때까지 출력한다.
#include <iostream>
using namespace std;
int main() {
string sentence;
while(true){
getline(cin, sentence);
if(sentence.empty())
break;
cout << sentence << endl;
}
}
c++로 ps를 오늘부터 시작하기로 했다.
처음은 간단하게 쉬운 문제부터 시작하고 내일부터 자료구조를 준비해야겠다.