-
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 = loopLeng; 1 <= i; i--) { System.out.println(i); } } }
'PS > 백준' 카테고리의 다른 글
1924 2007년 (0) 2022.03.02 2739 구구단 (0) 2022.03.01 2741 N 찍기 (0) 2022.02.27 11721 열 개씩 끊어 출력하기 (0) 2022.02.26 11720 숫자의 합 (0) 2022.02.25