Answers for "how to round of double to two decimal places in java"

6

java round double to 2 decimals

double roundOff = Math.round(a * 100.0) / 100.0;
// Or
double roundOff = (double) Math.round(a * 100) / 100;
// both have the same output.
Posted by: Guest on September-21-2021

Code answers related to "how to round of double to two decimal places in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language