How to round a number to the closest int or long in Groovy

1 Answer

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

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

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

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

d = 9487437387.8472
System.out.println(Math.round(d))




/*
run:

-4
4
3
4
9487437388

*/

 



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

Related questions

1 answer 211 views
1 answer 189 views
1 answer 253 views
1 answer 128 views
128 views asked Jan 21, 2023 by avibootz
1 answer 176 views
176 views asked Oct 2, 2020 by avibootz
...