ペクシルき
質問する
ソリューション
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);
}
}
}
Reference
この問題について(ペクシルき), 我々は、より多くの情報をここで見つけました https://velog.io/@ybnr_92/백준-기찍Nテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol