Java BigDecimal.divide(BigDecimal divisor, RoundingMode roundingMode)

Syntax

BigDecimal.divide(BigDecimal divisor, RoundingMode roundingMode) has the following syntax.

public BigDecimal divide(BigDecimal divisor,   RoundingMode roundingMode)

Example

In the following code shows how to use BigDecimal.divide(BigDecimal divisor, RoundingMode roundingMode) method.


//  www.ja v  a  2  s.  c  om
import java.math.BigDecimal;
import java.math.RoundingMode;

public class Main {

  public static void main(String[] args) {

    BigDecimal bg1 = new BigDecimal("16");
    BigDecimal bg2 = new BigDecimal("3");

    // divide bg1 with bg2 rounding up
    BigDecimal bg3 = bg1.divide(bg2, RoundingMode.UP);

    System.out.println(bg3);
  }
}

The code above generates the following result.





















Home »
  Java Tutorial »
    java.math »




BigDecimal
BigInteger