반응형
자바는 큰수를 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);
}
}
반응형
'프로그래밍 > 알고리즘 풀이' 카테고리의 다른 글
[알고리즘] 백준 1330번 두 수 비교하기 Java (0) | 2020.06.26 |
---|---|
[알고리즘] 백준 2588번 곱셉 JAVA (0) | 2020.06.25 |
[알고리즘] 유클리드 호제법을 이용하여 최대 공약수를 구하는 알고리즘 (0) | 2020.04.28 |
[알고리즘] 재귀알고리즘 (0) | 2020.04.27 |
[알고리즘] 이진검색 (0) | 2020.04.26 |
댓글