Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
Is your input a decimal or a double ? – AakashM Feb 2 '11 at 13:34
stackoverflow.com/questions/752655/… Here is solution for SQL – adopilot Feb 2 '11 at 13:38

3 Answers

You could first divide by 5 and then use Math.Ceiling to round the value. Afterwards, u can multiply by 5 again.

int rounded = (int) Math.Ceiling(Number / 5) * 5
share|improve this answer
you have forgot to cast it to int and if you want to make sure double is used, just write 5.0: int rounded = (int)Math.Ceiling(Number / 5.0) * 5 – Floste Feb 2 '11 at 13:32
u are actually right, thx for the hint ;) - if he wants to have it as an int. It sounds like, so i corrected it. For the second one: Well, Number is a decimal, so it does not matter. – Sören Feb 2 '11 at 13:33
thank you very much! this works great! I dont really understand the logic, but then again I am not too good with math, should I be really embarassed? :-s – IrishBelly Feb 2 '11 at 13:47
since rounded is int, wont type casting be automatic? – IrishBelly Feb 2 '11 at 13:48
2  
Well done! Have a nice answer badge. – Christopher Pfohl Feb 2 '11 at 13:57
show 1 more comment

If you want

 f[6]  =  10
 f[-1] =  0  
 f[-6] = -5

Sören's answer is OK.

If instead you want:

 f[6]  =  10
 f[-1] =  -5 
 f[-6] = -10  

you could do something like:

f[x_] := Sign[x] Ceiling[Abs[x]/5] * 5  

C#:

var rounded = (int) Math.Sign(x) * Math.Ceiling(Math.Abs(x)/5) * 5;
share|improve this answer
var rounded = (int) Math.Sign(x) * Math.Ceiling(Math.Abs(x)/5) * 5; – Sani Huttunen Feb 2 '11 at 14:01
@Sani Thanks! Fell free to edit the answer. – belisarius Feb 2 '11 at 14:07

How about:

5 * decimal.Ceiling(num / 5)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.