본문 바로가기
프로그래밍/알고리즘 풀이

[알고리즘] 백준 10757번 큰 수 A+B Java

by 방구석개발자 2020. 6. 24.
반응형

자바는 큰수를 BigInteger 클래스로 정의 하였습니다.

math api를 사용하여 작성하였습니다.

import java.util.Scanner;
import java.math.*;

public class Main {

    public static void sum(BigInteger A, BigInteger B){
        System.out.println(A.add(B));
    }
    public static void main(String[] args) {
        Scanner scan=new Scanner(System.in);
        String ab=scan.nextLine();
        String strab[]=ab.split(" ");
        BigInteger A=new BigInteger(strab[0]);
        BigInteger B=new BigInteger(strab[1]);
        sum(A,B);

    }
}

 

반응형

댓글