Sometimes I need to round a float to the nearest quarter and sometimes to the nearest half.
For the half I use
Math.round(myFloat*2)/2f
I can use
Math.round(myFloat*4)/4f.
but is there any other suggestions?
|
|
All you need is:
Since a half is also two quarters this single equation will take care of your half-rounding as well. You don't need to do two different equations for half or quarter rounding. Code Sample:
Output:
|
|||||||||||||||
|
|
Mathematically speaking, you could multiply your float by .25, round it, and then divide again by .25. EDIT: I'm sorry, it seems I misunderstood what you meant by quarter. However, as far as I know, this is the simplest way to round to various decimal places and degrees. |
|||
|
|