seong

백준 2439번 본문

알고리즘/백준

백준 2439번

hyeonseong 2022. 7. 29. 10:28
import java.util.Scanner;

public class Main{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
        sc.close();
        for(int i = 1; i <= a; i++){
            for(int j = 1; j <= a-i ; j++){
                System.out.print(" ");
            }
            for(int n = 1; n <=i ; n++){
                System.out.print("*");
            }
            System.out.println();
        }
    }
}

'알고리즘 > 백준' 카테고리의 다른 글

백준 10952번  (0) 2022.07.29
백준 10817번  (0) 2022.07.29
백준 2438번  (0) 2022.07.29
백준 11022번  (0) 2022.07.29
백준 11021번  (0) 2022.07.29