Java BigDecimal.divide(BigDecimal divisor, int scale, RoundingMode roundingMode)

Syntax

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

public BigDecimal divide(BigDecimal divisor,  int scale,   RoundingMode roundingMode)

Example

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


/*from  w ww  .  ja  v a  2 s . c o m*/
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 with 3 scale
    BigDecimal bg3 = bg1.divide(bg2, 3, RoundingMode.CEILING);

    System.out.println(bg3);
  }
}

The code above generates the following result.





















Home »
  Java Tutorial »
    java.math »




BigDecimal
BigInteger