문제 링크


🔷 분류

구현

✒️ 문제 설명

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

⬅️ 입력

없음.

➡️ 출력

개를 출력한다.

💻 코드 (C++)

#include <iostream>
using namespace std;

int main() {
	ios::sync_with_stdio(0);
	cin.tie(0);
	cout << "|\\_/|\n";
	cout << "|q p|   /}\n";
	cout << "( 0 )\"\"\"\\\n";
	cout << "|\"^\"`    |\n";
	cout << "||_/=\\\\__|";
	
	return 0;
}

글 이동

Comments