문제

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

입력

없음.

출력

고양이를 출력한다.

예제 입력 1

 

예제 출력 1

\    /\
 )  ( ')
(  /  )
 \(__)|

더보기

Solution

#include<stdio.h>

int main(void)
{
	printf("\\    /\\\n )  ( ')\n(  /  )\n \\(__)|\n");
	return 0;
}
728x90

+ Recent posts