BigInteger.pow
Class Overview | Class Members |
This Package |
All Packages
public BigInteger pow( int exponent ) throws ArithmeticException
Description
Returns a BigInteger whose value is (this ** exponent). Throws
an ArithmeticException if exponent < 0 (as the operation would yield
a non-integer value). Note that exponent is an integer rather than
a BigInteger.