BigInteger.modInverse(BigInteger m) has the following syntax.
public BigInteger modInverse(BigInteger m)
In the following code shows how to use BigInteger.modInverse(BigInteger m) method.
/* w ww.j a v a 2 s .co m*/ import java.math.BigInteger; public class Main { public static void main(String[] args) { BigInteger bi1 = new BigInteger("7"); BigInteger bi2 = new BigInteger("20"); // perform modInverse operation on bi1 using bi2 BigInteger bi3 = bi1.modInverse(bi2); System.out.println(bi3); } }
The code above generates the following result.