Answers for "round up in java"

5

how to round up in java

int x = 3.14;

Math.round(x);
//Rounds to nearest int
Math.ceil(x);
//Rounds up to int
Math.floor(x);
//Rounds down to int
Posted by: Guest on September-30-2020
1

java round up

double test = 0.01;
// rounds up to the next INTEGER
test = Math.ceil(test);  // 1.0


double test2 = 1.0;
// does not round if decimal is 0
test2 = Math.ceil(test2);  // 1.0
Posted by: Guest on February-10-2020
0

java round to nearest 5

5*(Math.round(number/5));
Posted by: Guest on May-31-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