How to get integer that is the closest to a number (rint) in Groovy

1 Answer

0 votes
double d = -3.7; 
System.out.println(Math.rint(d))

d = 3.6
System.out.println(Math.rint(d))

d = 3.4
System.out.println(Math.rint(d))

d = 3.5
System.out.println(Math.rint(d))




/*
run:

-4.0
4.0
3.0
4.0

*/

 



answered Oct 3, 2020 by avibootz
edited Oct 4, 2020 by avibootz

Related questions

1 answer 177 views
1 answer 165 views
1 answer 207 views
1 answer 177 views
...