Java BigInteger.divide(BigInteger val)

Syntax

BigInteger.divide(BigInteger val) has the following syntax.

public BigInteger divide(BigInteger val)

Example

In the following code shows how to use BigInteger.divide(BigInteger val) method.


/*from  w  ww  .j  av  a2  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");

    // divide bi1 with bi2
    BigInteger bi3 = bi1.divide(bi2);

    System.out.println(bi3);
  }
}

The code above generates the following result.





















Home »
  Java Tutorial »
    java.math »




BigDecimal
BigInteger