[백준] 10171번

park jinwoo·2022년 12월 16일
0

백준

목록 보기
45/94

https://www.acmicpc.net/problem/10171
아래 예제와 같이 고양이를 출력하시오.

<script>
#include <stdio.h>

int main() {

	printf("\\    /\\\n");
	printf(" )  ( ')\n");
	printf("(  /  ) \n");
	printf(" \\(__)|\n");

	return 0;
}
</script>

0개의 댓글