알고리즘 문제 풀이/C++

[C++] Bronze V - 10189. Hook (Baekjoon)

갓것걋 2024. 7. 24. 05:28
 

10189. Hook

Print out the word Hook as shown below.

www.acmicpc.net


문제 설명

더보기

Hook [다국어]

 

문제

Print out the word Hook as shown below.

입력

없음.

 

출력

Print out the word Hook as shown below.

 

예제 입력 1

없음

 

예제 출력 1

#  # #### #### #  #
#### #  # #  # # #
#### #  # #  # # #
#  # #### #### #  #
 

문제 해설

C++ 코드

#include 
using namespace std;

int main() {

	cout << "#  # #### #### #  #\n";
	cout << "#### #  # #  # # #\n";
	cout << "#### #  # #  # # #\n";
	cout << "#  # #### #### #  #\n";

	return 0;
}

 

C++ 코드 해설

  1. 알아서 잘 출력하면 됨.