Hi
I have this number: 1234.5678 (as a text)
I need this number as double, with only 2 numbers after the dot
But without Round the number
in 1234.5678 - i get 1234.57
in 12.899999 - i get 12.90
How I can do it ?
|
|
|||||
|
|
|
Multiply by 100, take floor() of the number, divide by 100 again. |
||
|
|
|
|
This is because you can't represent these numbers exactly as doubles, so converting, rounding, and then reprinting as text results in a loss of precision. Use 'decimal' instead. |
||||
|
|
|
You should be able to get what you want like this:
|
||||
|
|
|
This doesn't work?
|
||
|
|
|
|
Take this floating point arithmetic!
(This code carries no warranties express or implied). |
|||
|
|
|
You didn't post the results you wanted, but I assume you want truncation, so that you'll see 1234.56, and 12.89. Try:
|
||
|
|
|
|
This should do the trick.
|
||
|
|