본문 바로가기

프로그래밍 문제/백준

[백준] 2742번 : 기찍 N - java

1
2
3
4
5
6
7
8
9
10
11
12
import java.util.Scanner;
 
public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int count = sc.nextInt();
 
        for (; 1 <= count; count--){
            System.out.println(count);
        }
    }
}
cs