BAEKJOON/분류안해둔거

백준 알고리즘 10172번 개

치조 2020. 3. 7. 21:45
반응형

문제

아래 예제와 같이 개를 출력하시오.

입력

없음.

출력

개를 출력한다.

 

CODE

#include<iostream>

using namespace std;

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

 

 

 

반응형