I am trying to find a way to round values to the nearest 0.05. For example:
Is there a simple way to do this in Java?
One option for doing this would be as follows:
Math.round
to round to the nearest integer.For example:
double rounded = Math.round(x * 20.0) / 20.0;
Hope this helps!
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With