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 |
프로그래밍 문제/백준