문제 링크


🔷 분류

구현

✒️ 문제 설명

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

⬅️ 입력

없음.

➡️ 출력

고양이를 출력한다.

💻 코드 (C++)

#include <iostream>
using namespace std;

int main(){
	ios::sync_with_stdio(0);
	cin.tie(0);
	cout << "\\    /\\ \n )  ( ')\n(  /  )\n \\(__)|";
	
	return 0;
}

글 이동

Comments