본문 바로가기
알고리즘/SWEA

2043. 서랍의 비밀번호. D1

by 모두의 향연 2022. 2. 5.
728x90
반응형
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
 
public class Solution {
 
    public static void main(String[] args) throws NumberFormatException, IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        StringTokenizer st =new StringTokenizer(br.readLine());
        
        int[] intArr =  new int[2];
        for(int i=0;i<2;i++) {
            int num = Integer.parseInt(st.nextToken());
            intArr[i]=num;
        }
        int count=0;
        for(int i=intArr[1];i<=intArr[0];i++) {
            count++;
        }
        System.out.println(count);
    }
}
cs

 

728x90
반응형

'알고리즘 > SWEA' 카테고리의 다른 글

2027. 대각선 출력하기.D1  (0) 2022.02.05
2029. 몫과 나머지 출력하기.D1  (0) 2022.02.05
2046. 스탬프 찍기.D1  (0) 2022.02.05
2047. 신문 헤드라인.D1  (0) 2022.02.05
2050. 알파벳을 숫자로 변환.D1  (0) 2022.02.05