본문 바로가기
PS/BOJ

[자바] 백준 23806 - 골뱅이 찍기 - ㅁ (boj java)

by Nahwasa 2022. 6. 29.

문제 : boj23806

 

  규칙을 잘 찾아 그대로 구현해보자. 규칙은 아래와 같다.

 

1. N개의 줄에 5N개 만큼의 '@'을 출력한다.

2. 3*N개의 줄에 N개의 '@', 3N개의 ' '(공백), N개의 '@'을 차례대로 출력한다.

3. N개의 줄에 5N개 만큼의 '@'을 출력한다.

 

코드 :  github

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
    private void solution() throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        int n = Integer.parseInt(br.readLine());
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < 5*n; j++) {
                sb.append('@');
            }
            sb.append('\n');
        }
        for (int i = 0; i < 3*n; i++) {
            for (int j = 0; j < n; j++) {
                sb.append('@');
            }
            for (int j = 0; j < 3*n; j++) {
                sb.append(' ');
            }
            for (int j = 0; j < n; j++) {
                sb.append('@');
            }
            sb.append('\n');
        }
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < 5*n; j++) {
                sb.append('@');
            }
            sb.append('\n');
        }
        System.out.println(sb);
    }
    public static void main(String[] args) throws Exception {
        new Main().solution();
    }
}

댓글