본문 바로가기
코딩/BAEKJOON

[백준/BAEKJOON] 2742번 찍기 N JAVA

by JEONJIHO 2021. 9. 6.
반응형

 

1.

자연수 N을 입력받는다.

 

2.

for 문을 돌면서 한 줄씩 자연수 N을 감소하며 출력한다.

 

 

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		sc.close();
		
		for (int i = n; i > 0; --i) {
			System.out.println(i);
		}
	}
}