Answers for "in java round float"

1

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
0

rounding off in java

(double)Math.round(value * 100000d) / 100000d
Posted by: Guest on June-05-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language