Problem Solving Log
[Baekjoon] 10172 : 개 (C++)
TypeMIN
2022. 3. 2. 19:45
728x90
Baekjoon Online Judge P.Number번 : P.Name
문제
아래 예제와 같이 개를 출력하시오.
입력
없음.
출력
개를 출력한다.
예제 입력
예제 출력
|\_/|
|q p| /}
( 0 )"""\
|"^"` |
||_/=\\__|
코드
#include <iostream>
using namespace std;
int main(){
cout << "|\\_/|" << endl;
cout << "|q p| /}" << endl;
cout << "( 0 )\"\"\"\\" << endl;
cout << "|\"^\"` |" << endl;
cout << "||_/=\\\\__|";
}
728x90
반응형