Java BigDecimal.pow(int n, MathContext mc)

Syntax

BigDecimal.pow(int n, MathContext mc) has the following syntax.

public BigDecimal pow(int n,  MathContext mc)

Example

In the following code shows how to use BigDecimal.pow(int n, MathContext mc) method.


/*from   w  w  w . ja  v a 2 s. c om*/

import java.math.BigDecimal;
import java.math.MathContext;

public class Main {

  public static void main(String[] args) {

    MathContext mc = new MathContext(4); // 4 precision

    BigDecimal bg1 = new BigDecimal("2.17");

    BigDecimal bg2 = bg1.pow(3, mc);

    System.out.println(bg2);
  }
}

The code above generates the following result.





















Home »
  Java Tutorial »
    java.math »




BigDecimal
BigInteger