Notice
Recent Posts
Recent Comments
«   2024/12   »
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31
Archives
Today
Total
관리 메뉴

Cafe Binary Notation

[백준 알고리즘 2741번] N찍기 (자바) 본문

Java/알고리즘

[백준 알고리즘 2741번] N찍기 (자바)

켄달지나 2018. 2. 7. 16:01

단계별로 풀기: 3단계-1



문제:


자연수 N이 주어졌을 때, 1부터 N까지 한 줄에 하나씩 출력하는 프로그램을 작성하시오.


입력:


첫째 줄에 100,000보다 작거나 같은 자연수 N이 주어진다.



출력:


첫째 줄부터 N번째 줄 까지 차례대로 출력한다.



나의 답안:



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import java.util.*;
 
public class Main {
    public static void main(String[] args){
        
        Scanner scan = new Scanner(System.in);
        
        int num = scan.nextInt();
        
        if(num<=100000 || num>0) {
            
            for(int i=1; i<=num; i++) {
                
                System.out.println(i);
                
            }
            
        }else {
            
            System.out.println("숫자는 100,000보다 작거나 같은 자연수여야 합니다.");
            
        }
        
        
    }
}
cs