2439번 별찍기-2
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int n = scanner.nextInt();
int j;
for(int i=0; i< n; i++) {
for(j=n-1; i<j;j--) {
System.out.print(" ");
}
for(int k=0; k<j+1; k++) {
System.out.print("*");
}
System.out.print("\n");
}
}
}
'공부기록 > 백준' 카테고리의 다른 글
[백준] 5524번 입실관리 (0) | 2023.06.06 |
---|---|
[백준] 1676번 팩토리얼 0의 개수, 27866번 문자와 문자열 (0) | 2023.05.31 |
[백준] 10807번 개수세기, 10871번 X보다 작은 수, 10818번 최소, 최대, 10699번 오늘 날짜 (0) | 2023.02.12 |
[백준] 2525번: 오븐 시계 , 10757번: 큰 수 A+B (0) | 2023.02.01 |
[백준] 10952번: A+B-5, 10950번: A+B-3, 11021번: A+B-7, 2884번 알람 시계 (0) | 2023.01.31 |