I have a Double value:
double a = 4.5565;
What is the easiest way to calculate the number of digits after the decimal point (4 in this case).
I know that I can convert to string and do a split and take the length. But is there an easier way?
|
I have a Double value:
What is the easiest way to calculate the number of digits after the decimal point (4 in this case). I know that I can convert to string and do a split and take the length. But is there an easier way? |
|||
| show 1 more comment |
|
There's no easy way, especially since the number of digits mathematically speaking might be far more than displayed. For example, 4.5565 is actually stored as EDIT You could come up with some algorithm that works like this: if, as you calculate the decimal representation, you find a certain number of 9s (or zeros) in succession, you round up (or down) to the last place before the series of 9s (or zeros) began. I suspect that you would find more trouble down that road than you would anticipate. |
|||||||||||||
|
|
I Think String solution is best : |
|||||||||||||||
|
|
|||
|
|
awill probably not be exactly 4.5565. If you don't understand why, I suggest you read this: csharpindepth.com/Articles/General/FloatingPoint.aspx – Thomas Levesque Feb 21 '12 at 23:03Decimal. – SLaks Feb 21 '12 at 23:08