Written by
java-style
on
on
[백준 2442번 - java] 별 찍기 - 5
[백준 2442번 - java] 별 찍기 - 5
https://www.acmicpc.net/problem/2442
내 답안
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); String[][] star = new String[n][(2*n)-1]; //배열 초기화 for (int i=0; i=0; j--) { star[i][j] = " "; } } for (int i=0; i
from http://dotddori-prgmwh.tistory.com/101 by ccl(A) rewrite - 2021-11-16 15:02:04