// 2022-07-21 // 별 찍기 - 3 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()); for(int i=0; i
#
백준2440
#
백준별찍기
#
백준알고리즘2440
#
자바for문
#
자바for문연습
#
자바반복문
#
자바별찍기
원문 링크 : [자바] 백준알고리즘 2440번 별 찍기 - 3 (B4)