풀이
- 없음
import java.io.*;
public class 별찍기12 {
public static void main(String[] args) throws IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int n = Integer.parseInt(br.readLine());
for (int i = 1; i < 2*n; i++) {
if (i <= n) {
for (int j = 0; j < n-i; j++) System.out.print(" ");
for (int j = 0; j < i; j++) System.out.print("*");
} else {
for (int j = 0; j < i-n; j++) System.out.print(" ");
for (int j = 0; j < 2*n-i; j++) System.out.print("*");
}
System.out.println();
}
}
}
'알고리즘' 카테고리의 다른 글
[백준, 자바, 2523번] 별찍기 - 13 (0) | 2024.02.13 |
---|---|
[백준, 파이썬, 2523번] 별찍기 - 13 (0) | 2024.02.13 |
[백준, 파이썬, 2522번] 별찍기 - 12 (0) | 2024.02.13 |
[백준, 파이썬, 1270번] 전쟁 - 땅따먹기 (0) | 2024.02.12 |
[백준, 파이썬, 1269번] 대칭 차집합 (0) | 2024.02.12 |