-
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws IOException { BufferedReader buf = new BufferedReader(new InputStreamReader(System.in)); int loopLeng = Integer.parseInt(buf.readLine()); for (int i = 1; i <= loopLeng; i++) { System.out.println(i); } } }
'PS > 백준' 카테고리의 다른 글
2739 구구단 (0) 2022.03.01 2742 기찍 N (0) 2022.02.28 11721 열 개씩 끊어 출력하기 (0) 2022.02.26 11720 숫자의 합 (0) 2022.02.25 11719 그대로 출력하기 2 (0) 2022.02.24