I want to round up a number (decimal) so that it's divisible by 5.
For example, I have a few numbers and the numbers after rounding up:
Number Rounded
0.4 5
3.4 5
7.3 10
I can use ceil to convert this double to int and use a while loop to get them to the next multiple of 5, but I was wondering if there is any clever way of accomplishing this.
Thanks.
decimalor adouble? – AakashM Feb 2 '11 at 13:34