반응형
<코드>
import java.math.BigInteger;
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
BigInteger A = sc.nextBigInteger();
BigInteger B = sc.nextBigInteger();
A = A.add(B);
System.out.println(A);
}
}
BigInteger은 숫자가 아닌 문자열이기 때문에 사칙연산이 안되므로 BigInteger 클래스 내부의 메서드를 사용해서 덧셈을 하였습니다.
https://www.acmicpc.net/problem/10757
반응형
'🧩PS > 🥉Easy' 카테고리의 다른 글
[JAVA] 백준 2581번 - 소수 (0) | 2021.10.04 |
---|---|
[JAVA] 백준 1978번 - 소수 찾기 (0) | 2021.10.04 |
[JAVA] 백준 2839번 - 설탕 배달 (0) | 2021.10.04 |
[JAVA] 백준 2775번 - 부녀회장이 될테야 (0) | 2021.10.03 |
[JAVA] 백준 10250번 - ACM 호텔 (0) | 2021.10.03 |