본문 바로가기

컴퓨터/백준 알고리즘

백준 알고리즘 1001번 : A-B Java[자바]

문제 출처: https://www.acmicpc.net/problem/1001

 

1001번: A-B

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

www.acmicpc.net

1. 코드

import java.util.Scanner;
 
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);
    }
}

(실행)

 

Ideone.com

Ideone is something more than a pastebin; it's an online compiler and debugging tool which allows to compile and run code online in more than 40 programming languages.

ideone.com

2. 문제 해결 방식

Scanner를 사용하기 위해서 다음과 같은 코드가 필요하다.

import java.util.Scanner;

그리고 Scanner의 변수를 지정하고 A와 B를 입력한다.

Scanner sc = new Scanner(System.in);
 
int A = sc.nextInt();
int B = sc.nextInt();

그리고 출력하면 끝이다.

System.out.println(A - B);