![]() |
VOOZH | about |
public BigInteger max(BigInteger val)Parameters: The method accepts one parameter val which refers to the value with which the maximum is to be computed. Return Value: The method returns the BigInteger whose value is the greater of this and val. If they are equal, either may be returned. Below program illustrate max() method of BigInteger class.
Bigger Integer between 8976543245 and 9248040402 is 9248040402
public BigInteger min(BigInteger val)Parameters: The method accepts one parameter val which refers to the value with which the minimum is to be computed. Return Value: The method returns the BigInteger whose value is the lesser of this and val. If the values are equal, either may be returned. Below program illustrate min() method of BigInteger class.
lesser Integer between 5782539631 and 3592633823 is 3592633823