Java BigDecimal ROUND_HALF_EVEN

Syntax

BigDecimal.ROUND_HALF_EVEN has the following syntax.

public static final int ROUND_HALF_EVEN

Example

In the following code shows how to use BigDecimal.ROUND_HALF_EVEN field.


//ww w  .j av  a2s  .c  o m
import java.math.BigDecimal;

public class Main {

  public static void main(String[] args) {

    BigDecimal bg1 = new BigDecimal("40");

    BigDecimal bg2 = new BigDecimal("3");
    

    BigDecimal bg3 = bg1.divide(bg2, BigDecimal.ROUND_HALF_EVEN);

    System.out.println(bg3);
  }
}

The code above generates the following result.





















Home »
  Java Tutorial »
    java.math »




BigDecimal
BigInteger