BigInteger.mod(BigInteger m) has the following syntax.
public BigInteger mod(BigInteger m)
In the following code shows how to use BigInteger.mod(BigInteger m) method.
/*from w w w . ja va 2 s .c o m*/ import java.math.BigInteger; public class Main { public static void main(String[] args) { BigInteger bi1 = new BigInteger("-100"); BigInteger bi2 = new BigInteger("3"); // perform mod operation on bi1 using bi2 BigInteger bi3 = bi1.mod(bi2); System.out.println(bi3); } }
The code above generates the following result.