본문 바로가기
Coding Test/백준

[★1][백준1000번 for JAVA]A + B

by B_E_D 2023. 1. 15.

[★1][백준1000번]A + B (JAVA)

1000번 문제 ☞ https://www.acmicpc.net/problem/1000

난이도 ☞ [★1]

A + B


  • 문제
    • 두 정수 A와 B를 입력받은 다음, A + B를 출력하는 프로그램을 작성하시오.
    • 첫 번째 줄에 A와 B가 주어진다.
    • 첫 번째 줄에 A + B를 출력한다.

내가 푼 풀이


아래 코드 둘다 정답이지만, 각각 성능차이가 좀 있습니다.

Scanner 방식 구현

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner s = new Scanner(System.in);

        int a = s.nextInt();
        int b = s.nextInt();

        System.out.println(a+b);

        s.close();
    }
}

BufferedReader 방식 구현

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

public class Main {

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

        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

        String[] str = br.readLine().split(" ");
        // br.readLine()을 통해 읽어온 것을 공백 단위로 나눠준 뒤 String 배열에 각각 저장
        int a = Integer.parseInt(str[0]);
        int b = Integer.parseInt(str[1]);

        System.out.println(a + b);

    }

}

댓글