-
2441 별 찍기 - 4PS/백준 2022. 3. 8. 22:04
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws IOException { BufferedReader buf = new BufferedReader(new InputStreamReader(System.in)); int loopLeng = Integer.parseInt(buf.readLine()); for (int i = 0; i < loopLeng; i++) { for (int j = 1; j <= i; j++) { System.out.print(" "); } for (int k = 0; k < loopLeng - i; k++) { System.out.print("*"); } System.out.println(""); } } }
'PS > 백준' 카테고리의 다른 글
2445 별 찍기 - 8 (0) 2022.03.10 2442 별 찍기 - 5 (0) 2022.03.09 2440 별 찍기 - 3 (0) 2022.03.07 2439 별 찍기 - 2 (0) 2022.03.06 2438 별 찍기 - 1 (0) 2022.03.06