In this example, bigdecimal class round method working is demonstrated.
Method return type is a bigdecimal value as per context
settings.
Method throws NumberFormatException if it finds value other than integer and double. Method also throws
ArithmeticException if the rounding mode is UNNECESSARY.
Syntax for using the method: public BigDecimal round(MathContext mc)
BigDecimal objects with names x, y;
System.out.print(x.round(mc));
or
y = x.round(mc);
Java_bigdecimal_round.java
import java.math.BigDecimal;
|
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: Java bigdecimal round example
Post your Comment