In C#, the result of Math.Round(2.5) is 2.
It is supposed to be 3, isn't it? Is this a C# bug or something?
Thanks!
|
show 2 more comments
feedback
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
|
Firstly, this wouldn't be a C# bug anyway - it would be a .NET bug. C# is the language - it doesn't decide how And secondly, no - if you read the docs, you'll see that the default rounding is "round to even" (banker's rounding):
You can specify how
Whether this default was well chosen or not is a different matter. ( You may be interested to take a look at the nearest Java equivalent enum ( | |||||||||||||||||||||
feedback
|
|
From MSDN, Math.Round(double a) returns:
... and so 2.5, being halfway between 2 and 3, is rounded down to the even number (2). this is called Banker's Rounding (or round-to-even), and is a commonly-used rounding standard. Same MSDN article:
You can specify a different rounding behavior by calling the overloads of Math.Round that take a Really, documentation is your friend. | ||||
|
feedback
|
|
You should check MSDN for
You can specify the behavior of
| |||||
|
feedback
|
|
The default Who are these bankers that are rounding down on even numbers (British bankers perhaps!)?From wikipedia
It seems a very strange way of rounding particularly for banking, unless of course banks use to receive lots of deposits of even amounts. Deposit £2.4m, but we'll call it £2m sir. The IEEE Standard 754 dates back to 1985 and gives both ways of rounding, but with banker's as the recommended by the standard. This wikipedia article has a long list of how languages implement rounding (correct me if any of the below are wrong) and most don't use Bankers' but the rounding you're taught at school:
| ||||
|
feedback
|
|
Apparently the round method, when asked to round a number exactly between two integers, returns the even integer. So, Math.Round(3.5) returns 4. See this article | |||
|
feedback
|
|
How about this: Math.Round(1123.485, 2, MidpointRounding.AwayFromZero) gives the same result as Math.Round(1123.485, 2, MidpointRounding.ToEven) and that is 1123.48 :) How logical is that? | |||||
feedback
|
|
Since Silverlight doesn't support the MidpointRounding option you have to write your own. Something like:
For the examples including how to use this as an extension see the post: .NET and Silverlight Rounding | |||
|
feedback
|
|
This is ugly as all hell, but always produces correct arithmetic rounding. public double ArithRound(double number,int places){ string numberFormat = "###."; numberFormat = numberFormat.PadRight(numberFormat.Length + places, '#'); return double.Parse(number.ToString(numberFormat)); } | |||||
feedback
|
1.005can't be represented exactly in double. It's probably1.00499.... If you useDecimalthis problem will disappear. The existence of the Math.Round overload that takes a number of decimal digits on double is a dubious design choice IMO, since it will rarely work in a meaningful way. – CodeInChaos Nov 1 '11 at 15:14