// 2022-07-18 // 별 찍기 - 4 import java.io.IOException; import java.io.BufferedReader; import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int N = Integer.parseInt(br.readLine()); StringBuilder sb = new StringBuilder(); for(int i=0; i
#
백준2441
#
백준별찍기
#
백준알고리즘2441
#
자바for문
#
자바for문연습
#
자바반복문
#
자바별찍기
원문 링크 : [자바] 백준알고리즘 2441번 별 찍기 - 4 (B3)