728x90
https://www.acmicpc.net/problem/2522
[문제]
[코드]
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 < n; i++) {
for(int j = n; j > i+1; j--)
System.out.print(" ");
for(int k = 0; k < i+1; k++)
System.out.print("*");
System.out.println();
}
for(int i = 0; i < n-1; i++) {
for(int j = 0; j < i+1; j++)
System.out.print(" ");
for(int k = i; k < n-1; k++)
System.out.print("*");
System.out.println();
}
sc.close();
}
}
[결과]
728x90
'백준(Baekjoon)' 카테고리의 다른 글
[백준] 5086번: 배수와 약수 - 자바 (0) | 2022.05.09 |
---|---|
[백준] 2747번: 피보나치 수 - 자바 (0) | 2022.05.08 |
[백준] 2490번: 윷놀이 - 자바 (0) | 2022.04.30 |
[백준] 2576번: 홀수 - 자바 (0) | 2022.04.29 |
[백준] 2010번: 플러그 - 자바 (0) | 2022.04.10 |