I'm getting numbers like
2.36363636363636
4.567563
1.234566465448465
10.5857447736
How would i get ruby to round these numbers up (or down) to the nearest 0.05?
Thanks
|
1
|
|||
|
|
|
Check this link out, I think it's what you need. Ruby rounding |
||||||
|
|
|
In general the algorithm for “rounding to the nearest x” is:
Sometimes is better to multiply by
In your case that would be:
which would evaluate to:
I don’t know any Python, though, so the syntax might not be correct but I’m sure you can figure it out. |
||
|
|
|
Try 'nearest 5 cents' in Google. Heaps of results. Some of them relevant. |
||
|
|
|
|
|
||
|