반응형 BigInteger1 Java 큰 수의 표현 BigInteger 와 BigDecimal 정수 int나 long과 같은 데이터타입의 범위(대략 9,223,372,036,854,775,807) 를 넘는 숫자는 각 숫자를 BigInteger class의 객체로 나타낼 수 있습니다. import java.Math.BigInteger; BigInteger b1 = new BigInteger("12345678901234567890"); BigInteger b2 = new BigInteger("1"); System.out.println(b1.compareTo(b2)); // b1>b2면 1, 같으면 0, b1 2021. 11. 1. 이전 1 다음 반응형