I'm using C# and I need to round a double to nearest five. I can't find a way to do it with the Math.Round function. How can I do this?
What I want:
70 = 70
73.5 = 75
72 = 70
75.9 = 75
69 = 70
and so on..
Is there an easy way to do this?
|
feedback
|
|
Try
Hope this helps! Regards, Sebastiaan | |||||
feedback
|
|
This works:
| |||||||
feedback
|
|
Here is a simple program that allows you to verify the code. Be aware of the MidpointRounding parameter, without it you will get rounding to the closest even number, which in your case means difference of five (in the 72.5 example).
| |||
|
feedback
|