매일 BOJ

(매일 BOJ) C++ 10189번 Hook

norepinephrine 2025. 8. 3. 21:07

이번 문제는 10189번 Hook 이다.

작성코드

#include <bits/stdc++.h>
using namespace std;

int main(void){
    ios::sync_with_stdio(false); cin.tie(0);
    cout << "#  # #### #### #  #" << '\n';
    cout << "#### #  # #  # # #" << '\n';
    cout << "#### #  # #  # # #" << '\n';
    cout << "#  # #### #### #  #" << '\n';
}