728x90
반응형
문제
긴 자리 두 수를 입력받아
덧셈, 뺄셈, 곱셈을 수행하고 연산결과를 출력합니다.
코드
import java.util.Scanner;
import java.math.BigInteger;
public class Main {
public static void main(String [] args) {
Scanner s = new Scanner(System.in);
BigInteger a = new BigInteger(s.next());
BigInteger b = new BigInteger(s.next());
System.out.println(a.add(b));
System.out.println(a.subtract(b));
System.out.println(a.multiply(b));
}
}
% java에서는 biginteger와 BigInteger를 다른 것으로 인식하므로 구별해서 적어주어야 한다 %
728x90
728x90
'JAVA' 카테고리의 다른 글
[백준 2475번] 검증수 : for문 (0) | 2021.08.10 |
---|---|
[백준1550번] 16진수->10진수 변환 : 문자를 아스키코드로 변환 (0) | 2021.08.05 |
[백준1271번] 엄청난 부자2 : BigInteger 기초 (0) | 2021.08.04 |
[백준1001번] A-B : Scanner 객체 (0) | 2021.08.04 |
[백준1000번] A+B : Scanner 객체 (0) | 2021.08.04 |
댓글