-
2522 별 찍기 - 12PS/백준 2022. 3. 12. 23:54
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 inputValue = Integer.parseInt(buf.readLine()); for(int i=0,k=inputValue; i<2*inputValue; i++) { for(int j=0; j<inputValue; j++) { System.out.print(j<k-1?" ":"*"); } if(i<inputValue-1) k--; else k++; System.out.println(); } } }
'PS > 백준' 카테고리의 다른 글
10991 별 찍기 - 16 (0) 2022.03.13 2446 별 찍기 - 9 (0) 2022.03.13 2445 별 찍기 - 8 (0) 2022.03.10 2442 별 찍기 - 5 (0) 2022.03.09 2441 별 찍기 - 4 (0) 2022.03.08