[백준] P2439

동민·2021년 3월 11일
0
import java.util.Scanner;

public class P2439 {

	public static void main(String[] args) {

		Scanner sc = new Scanner(System.in);
		
		int n = sc.nextInt();
		
		for(int i = 0 ; i < n; i++) {
			
			for(int j = n-1; j > i; j--) {
				System.out.print(" ");
			}
			for(int k = 0; k<=i; k++) {
				System.out.print("*");
			}
			System.out.println();
			
		}
		
		
		sc.close();
		
		
	}

}
profile
BE Developer

0개의 댓글