vote up 4 vote down star

In C#, how do I round a float to the nearest int?

I see Math.Ceiling and Math.Round, but these returns a decimal. Do I use one of these then cast to an Int?

flag
See stackoverflow.com/questions/14/… for a full roundup. – paxdiablo May 25 at 2:44

6 Answers

vote up 8 vote down check

If you want to round to the nearest int:

int rounded = (int)Math.Round(precise, 0);

You can also use:

int rounded = Convert.ToInt32(precise);

Which will use Math.Round(x, 0); to round and cast for you. It looks neater but is slightly less clear IMO.


If you want to round up:

int roundedUp = (int)Math.Ceiling(precise);
link|flag
There is ambiguity in the question. The title suggests he wants to round up, while he states he wants the nearest int. These are 2 different things. – Simucal May 25 at 1:01
He wanted to round up. Wouldn't that be (int)Math.Ceiling(precise) ? – configurator May 25 at 1:01
@configurator, yea, that is what I'm thinking. – Simucal May 25 at 1:04
Added that just in case. – Simucal May 25 at 1:10
I'd also like to note that Math.Round uses banker's rounding. That is, a number with a non-integer part of exactly .5 would be rounded to the nearest even number. This is useful when doing aggregate sums of rounded numbers, but is usually unexpected - Math.Round(3.5) = 4, Math.Round(6.5) = 6. – configurator May 27 at 18:04
vote up 2 vote down

(int)Math.Round(myNumber, 0)

link|flag
vote up 5 vote down

Off the top of my head:

float fl = 0.678;
int rounded_f = (int)(fl+0.5f);
link|flag
Care to explain that last f (0.5f)? – Arve Systad May 25 at 8:09
vote up 0 vote down

Do I use one of these then cast to an Int?

Yes. There is no problem doing that. Decimals and doubles can represent integers exactly, so there will be no representation error. (You won't get a case, for instance, where Round returns 4.999... instead of 5.)

link|flag
vote up 0 vote down

The easiest is to just add 0.5f to it and then cast this to an int.

link|flag
vote up 0 vote down

You can cast to an int provided you are sure it's in the range for an int (Int32.MinValue to Int32.MaxValue).

link|flag

Your Answer

Get an OpenID
or

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