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!
|
3
|
|||||||||
|
|
|
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 ( |
||||||||||||||||||||
|
|
|
blah blah blah... Who reads this stuff anyway. After stumbling on Math.Round(2.5)==2 bug it took me few seconds to decide to write my own rounding function, and a minute to implement one. But of course I'm still baffled by how so widely used library allows such screw ups. If theoretical math says 2.5 rounded to integral number is 3, then it is. Period. No buts. End of file. :) PS. value>=0 ? (int)(value+0.5) : -(int)(-value+0.5) |
|||
|
|
|
|
This has stung me before with writing reports for accounting, so I'll write a few words of what I found out, previously and from looking into it for this post. 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 use school style rounding:
|
||
|
|
|
|
Any clues on which way rounding goes when using ToString()? E.g:
etc. I'm in a situation where I'm converting a site from "classic" ASP to ASP.Net and the old VBScript FormayNumber method has been used extensively, which rounds up, and I have been using Math.Round(a, 2) for financial figures until I came upon the "banker's rounding" outcome. The new app must look and work exactly like the old app, so I can't have £1.72 appearing where previously it was £1.73.... I'll be using the full-figured (snigger) decimal amounts (e.g. 1.725) for back-end calculations, and then rounding the outcomes as necessary, as they are financial amounts - I just need to impress this on the project sponsors I think, as they may want me to use Math.Ceiling instead... EDIT: Why does Math.Round(1.725m, 2) return 1.72? The 2 is clearly between two odd numbers, yet the even number is returned. HAY-YELP! Ta for any advice... |
||||||
|
|
|
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)); } |
||
|
|
|
|
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? |
||
|
|
|
|
||
|
|
|
|
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 |
||
|
|
|
|
You should check MSDN for
You can specify the behavior of
|
|||
|
|
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. |
|||
|
|