입력 자연수 N이 주어졌을 때, 1부터 N까지 한 줄에 하나씩 출력하는 프로그램을 작성하시오. 출력 첫째 줄에 100,000보다 작거나 같은 자연수 N이 주어진다. [문제 풀이] 1. 1부터 출력시킬 자연수 n을 입력받는다. // #1. Scanner 사용 (31640 KB / 1044 ms ) Scanner sc = new Scanner(System.in); int n = sc.nextInt(); // #2. BufferReader 사용 BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int n = Integer.parseInt(br.readLine()); 2. for문을 이용하여 자연수를 1부터 n까지 n번 출력시킨다..