백준 기찍N

pitbull terrier·2021년 6월 25일
0

자바 알고리즘

목록 보기
19/27

문제

해결방안

import java.util.Scanner;

public class Main {

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

0개의 댓글