java.math.BigInteger.modInverse(BigInteger m)%uA0返回一个BigInteger,其值是 (this-1%uA0mod m).
声明
以下是java.math.BigInteger.modInverse()方法的声明
public BigInteger modInverse(BigInteger m)
参数
-
m%uA0- the modulus
返回值
该方法返回一个BigInteger对象的值是 this-1%uA0mod m.
异常
-
ArithmeticException%uA0- 如果%uA0m ≤ 0, 或此BigInteger没有乘法逆模m(即,此BigInteger不是互质到m)。
例子
下面的例子显示math.BigInteger.modInverse()方法的用法
package com.yiibai import java.math.* public class BigIntegerDemo { public static void main(String[] args) { // create 3 BigInteger objects BigInteger bi1, bi2, bi3 // Two numbers are relatively prime if they have no // common factors, other than 1. bi1 = new BigInteger("7") bi2 = new BigInteger("20") // perform modInverse operation on bi1 using bi2 bi3 = bi1.modInverse(bi2) String str = bi1 + "^-1 mod " + bi2 + " is " +bi3 // print bi3 value System.out.println( str ) } }
让我们编译和运行上面的程序,这将产生以下结果:
7^-1 mod 20 is 3