使用BigInteger类的modPow方法来计算(base^exponent) % modulus,其中exponent为BigDecimal类型的指数。
import java.math.BigDecimal;
import java.math.BigInteger;
public class ModPowExample {
public static void main(String[] args) {
BigInteger base = new BigInteger("10");
BigDecimal exponent = new BigDecimal("2.5");
BigInteger modulus = new BigInteger("7");
// 使用modPow方法计算(base^exponent) % modulus
BigInteger result = base.modPow(exponent.toBigInteger(), modulus);
System.out.println(result); // 输出结果为 2
}
}
在上面的示例中,我们创建了一个BigInteger对象base,一个BigDecimal对象exponent和一个BigInteger对象modulus。然后,我们使用modPow方法来计算(base^exponent) % modulus,并将结果存储在一个新的BigInteger对象result中。
注意,我们使用exponent.toBigInteger()将BigDecimal类型的指数转换为BigInteger类型,因为modPow方法的第二个参数必须是BigInteger类型。