728x90
출처-https://www.acmicpc.net/problem/2442
728x90
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner scan=new Scanner(System.in);
int num=scan.nextInt();
for (int i=1;i<=num;i++) {
for (int j=1;j<=num-i;j++) //왼쪽 공백 다음 줄로 가면 한 칸씩 줄어든다.
System.out.print(" ");
for (int j=1;j<=(i*2-1);j++) //2i-1만큼 * 출력
System.out.print("*");
System.out.println();
}
}
}
728x90
'Problem Solving > BOJ' 카테고리의 다른 글
[백준, BOJ 2522] 별 찍기 - 12 (java) (0) | 2020.08.13 |
---|---|
[백준, BOJ 2445] 별 찍기 - 8 (java) (0) | 2020.08.13 |
[백준, BOJ 2441] 별 찍기 - 4 (java) (0) | 2020.08.13 |
[백준, BOJ 2440] 별 찍기 - 3 (java) (0) | 2020.08.13 |
[백준, BOJ 2439] 별 찍기 - 2 (java) (0) | 2020.08.13 |