[Bronze V] Hook - 10189

문제 링크

성능 요약

메모리: 1112 KB, 시간: 0 ms

분류

구현

제출 일자

2024년 11월 1일 23:47:04

문제 설명

Print out the word Hook as shown below.

입력

Empty

출력

Print out the word Hook as shown below.


💡 해결 방법

💻 코드

#include<stdio.h>
#include<string.h>
#include<stdlib.h>
 
int main(int argc, char *argv[])
{
	char target[100] = {
"#  # #### #### #  #\n"
"#### #  # #  # # #\n"
"#### #  # #  # # #\n"
"#  # #### #### #  #"
};
printf("%s", target);
 
 
}