Open In App

BigInteger mod() Method in Java

Last Updated : 04 Dec, 2018
Comments
Improve
Suggest changes
4 Likes
Like
Report
The java.math.BigInteger.mod(BigInteger big) method returns a BigInteger whose value is equal to (this BigInteger modfunction big(BigInteger passed as parameter)).In other words we can say that this method returns the value after performing (this % big) step.The mod operation finds the remainder after division of this BigInteger by another BigInteger passed as parameter. java.math.BigInteger.mod(BigInteger big) and java.math.BigInteger.remainder(BigInteger val) both function finds remainder but mod operation always returns a non-negative BigInteger. Syntax:
public BigInteger mod(BigInteger big)
Parameter: The function accepts a single mandatory parameter big which specifies the BigInteger Object by which we want to divide this bigInteger object. Return Value: The method returns the BigInteger which is equal to this BigInteger mod big(BigInteger passed as parameter). Exception: The method throws ArithmeticException when big ≤ 0 Examples:
Input: BigInteger1=321456, BigInteger2=31711
Output: 4346
Explanation: BigInteger1.mod(BigInteger2)=4346. The divide operation between 
321456 and 31711 returns 4346 as remainder.

Input: BigInteger1=59185482345, BigInteger2=59185482345
Output: 0
Explanation: BigInteger1.mod(BigInteger2)=0. The divide operation between 
59185482345 and 59185482345 returns 0 as remainder.
Below programs illustrate mod() method of BigInteger class: Example 1:
Output:
Result of mod operation between 321456 and 31711 equal to 4346
Example 2: When both are equal in value.
Output:
Result of mod operation between 3515219485 and 3515219485 equal to 0
Example 3: Program showing exception when BigInteger passed as a parameter is less than zero.
Output:
Exception in thread "main" java.lang.ArithmeticException: BigInteger: modulus not positive
    at java.math.BigInteger.mod(BigInteger.java:2458)
    at GFG.main(GFG.java:17)
Reference: https://docs.oracle.com/javase/7/docs/api/java/math/BigInteger.html#mod(java.math.BigInteger)

Similar Reads