관리 메뉴

Storage Gonie

(9) [C++] 백준 No.11718 그대로 출력하기 본문

알고리즘/백준풀이1. 입출력

(9) [C++] 백준 No.11718 그대로 출력하기

Storage Gonie 2019. 4. 19. 00:01
반응형

문제

풀이

# C++

#include <iostream>

using namespace std;

int main(void)
{
    char s[100];
       
    while (scanf("%[^\n]\n", s) == 1) // scanf는 s 하나의 값만 받으므로 1을 반환한다.
    {
        printf("%s\n", s);
    }
}
#include <iostream>

using namespace std;

int main(){
 
    string str;

    while (true)
    {
        getline(cin, str);
        if (str=="")             // EOF일 경우 종료
            break;
        cout << str << endl;
    }
}
반응형
Comments