본문으로 바로가기

BigInteger의 큰 수 계산

category Backend/Java 2019. 5. 30. 14:15
반응형
1
2
3
4
5
6
7
8
9
10
11
12
13
import java.math.BigInteger;
 
public class Main {
    public static void main(String[] args) {
        BigInteger big = new BigInteger("3");
        BigInteger mul = big.multiply(BigInteger.valueOf(3));
        
        for(int i=0; i<5; i++) {
            mul = mul.multiply(BigInteger.valueOf(3));
        }
        System.out.println(mul);
    }
}



위의 예제는 3의 7승 제곱근 결과를 나타낸 것


for문의 범위는 최대 n승의 -2까지 이다

반응형