Answers for "java print double with 2 decimal using round"

2

java printf double 2 decimal places

printf("%. 2f", value);
Posted by: Guest on November-19-2020
0

how to round double to 2 decimal places java

// calling the function round
round(200.3456, 2);

// Include this function in your class
public static double round(double value, int places) {
    if (places < 0) throw new IllegalArgumentException();

    BigDecimal bd = BigDecimal.valueOf(value);
    bd = bd.setScale(places, RoundingMode.HALF_UP);
    return bd.doubleValue();
}
Posted by: Guest on October-21-2021

Code answers related to "java print double with 2 decimal using round"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language