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
관리 메뉴

충분히 쌓여가는

백준[Java] 1001번 A-B 본문

IT/Java[백준]

백준[Java] 1001번 A-B

빌드이너프 2023. 2. 12. 23:03

https://www.acmicpc.net/problem/1001

 

1001번: A-B

두 정수 A와 B를 입력받은 다음, A-B를 출력하는 프로그램을 작성하시오.

www.acmicpc.net


문제풀이

import java.util.Scanner;
public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int A = sc.nextInt();
        int B = sc.nextInt();
        System.out.println(A-B);

        sc.close();
    }
}
  • 백준 1000문제와 같이 풀어주면 됨
  • 사칙연산 문제이기 때문에 간단한 문제(1000번에서 + -> - 로만 바뀜

주의사항

  • 공백 단위로 입력해야함

문제풀이 2

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.IOException;
import java.util.StringTokenizer; // StringTokenizer 클래스를 이용하여 분리
public class _1001_2 {
    public static void main(String[] args) throws IOException{
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

        String str = br.readLine(); // readLine() 은 한 행을 전부 읽기 때문에 공백단위로 입력해 준 문자열을 공백단위로 분리함
        StringTokenizer st = new StringTokenizer(str, " ");
        int A = Integer.parseInt(st.nextToken());
        int B = Integer.parseInt(st.nextToken()); // st.nextToken() 은 문자열을 반환 -> Integer.parseInt()로 int 형으로 변환

        System.out.println(A-B);
    }
}

문제풀이 3

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;

public class Main {
    public static void main(String[] args) throws IOException{

        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        StringTokenizer st  = new StringTokenizer(br.readLine()); // 변수 String 생성하지 않고 입력과 동시에 바로 구분자 처리해줌
        int A = Integer.parseInt(st.nextToken());
        int B = Integer.parseInt(st.nextToken());
        System.out.println(A-B);
    }
}

문제풀이 4

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.nio.Buffer;

public class Main {
    public static void main(String[] args) throws IOException{
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

        String[] str = br.readLine().split(" ");

        int A = Integer.parseInt(str[0]);
        int B = Integer.parseInt(str[1]);
        System.out.println(A-B);
    }
}

'IT > Java[백준]' 카테고리의 다른 글

백준[Java] 1008번 A/B  (1) 2023.02.13
백준[Java] 10998번 AXB  (0) 2023.02.12
백준[Java] 1000번 A+B  (1) 2023.02.10
백준[Java] 2557번 Hello World(BufferedWriter)  (2) 2023.02.10
백준[Java] 25083번 새싹  (0) 2023.01.03