Koalitsiya 2023. 3. 2. 17:21

문제 설명

아래 예제와 같이 개를 출력

 

예제

풀이

앞의 고양이 문제와 같이 \, ', "에 유의해서 작성하면 된다.

 

#include <iostream>

using namespace std;

int main() {
    cout << "|\\_/|" << endl;
    cout << "|q p|   /}" << endl;
    cout << "( 0 )\"\"\"\\" << endl;
    cout << "|\"^\"`    |" << endl;
    cout << "||_/=\\\\__|" << endl;

    return 0;
}