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.

How can I round 4.39 to 5 in VB.NET?

I tried:

Math.Round(4.39, 0)

But it displays 4.

share|improve this question
That's what 4.39 rounds to, regardless of your rounding system. – Cody Gray Mar 29 '12 at 19:59

1 Answer

up vote 7 down vote accepted

Use Math.Ceiling in order to round a number to the closest, larger, integer value:

Math.Ceiling(4.39)

As explained in the MSDN link:

"Returns the smallest integral value that is greater than or equal to the specified double-precision floating-point number."

share|improve this answer
Thanks for your help :) – John Nuñez Mar 29 '12 at 20:10

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.