별찍기121 [백준] 2522번: 별 찍기 - 12 - 자바 https://www.acmicpc.net/problem/2522 2522번: 별 찍기 - 12 첫째 줄부터 2×N-1번째 줄까지 차례대로 별을 출력한다. www.acmicpc.net [문제] [코드] import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); for(int i = 0; i i+1; j--) System.out.print(" "); for(int k = 0; k < i+1; k++) System.out.print("*"); System.. 2022. 5. 1. 이전 1 다음