백준 Hook

KIMYEONGJUN·2025년 3월 19일
post-thumbnail

문제

내가 생각했을때 문제에서 원하는부분

 Print out the word Hook as shown below.

Print out the word Hook as shown below.

내가 이 문제를 보고 생각해본 부분

그대로 출력하는 문제라서 별다르게 설명할게 없다.

코드로 구현

package baekjoon.baekjoon_27;

// 백준 10189번 문제
public class Main965 {
    public static void main(String[] args) {
        System.out.println("#  # #### #### #  #");
        System.out.println("#### #  # #  # # #");
        System.out.println("#### #  # #  # # #");
        System.out.println("#  # #### #### #  #");
    }
}

마무리

코드와 설명이 부족할수 있습니다. 코드를 보시고 문제가 있거나 코드 개선이 필요한 부분이 있다면 댓글로 말해주시면 감사한 마음으로 참고해 코드를 수정 하겠습니다.

profile
Junior backend developer

0개의 댓글