|
|
|
|
|
by ars
5495 days ago
|
|
When you store 19999999999...9999999999 as a float you round it, not truncate it. 19999999999...9999999999 = 20.....00 when rounded to 15 significant digits. You can even truncate it to 15 digits just to get it in there, and then round it to 14 digits. |
|