模幂运算(模运算中的幂运算)在 java 中


java.math.BigInteger.modPow(BigInteger exponent, BigInteger m) 返回一个 BigInteger,其值为 (this<sup>exponent</sup> mod m)。与 pow 不同,此方法允许使用负次方。你可以使用此方法计算模幂运算。

程序

实际范例

import java.math.*;

public class BigIntegerDemo {
   public static void main(String[] args) {
      // create 3 BigInteger objects
      BigInteger bi1, bi2, bi3;
     
      // create a BigInteger exponent
      BigInteger exponent = new BigInteger("2");
      bi1 = new BigInteger("7");
      bi2 = new BigInteger("20");
     
      // perform modPow operation on bi1 using bi2 and exp
      bi3 = bi1.modPow(exponent, bi2);
      String str = bi1 + "^" +exponent+ " mod " + bi2 + " is " +bi3;
     
      // print bi3 value
      System.out.println( str );
   }
}

输出

7^2 mod 20 is 9

更新于:2020-06-25

773 浏览次数

开启您的 职业生涯

完成课程后获得认证

开始
广告