[C Programming] 1-5. Dog

1 Stage
Input / Output (입/출력 받아보기)

Problem : 개를 출력하시오.

Input : None.

Output : 개를 출력한다.

Example Output :

|\_/|
|q p|   /}
( 0 )"""\
|"^"`    |
||_/=\\__|

Source Code

#include <stdio.h>
int main()
{
    printf("|\\_/|\n|q p|   /}\n( 0 )\"\"\"\\\n|\"^\"`    |\n||_/=\\\\__|");
}

Problem Address : https://www.acmicpc.net/problem/10172


댓글

이 블로그의 인기 게시물

[Data Base] 2. E/R 관계성 모델에 대하여..

소소한 이야기, 잡담, 낙서, 기록을 하는 블로그입니다 ^^

[Spring Boot] 1.Spring Boot.. 개발환경 갖추기.