I've this issue: x_1 is an integer that has this value:
x_1: 463606075
what I want to obtain is 46.3606075
, which the same number divided by 10000000
.
If I convert my int x_1 to a double, I obtain:
x_1: 463606075.000000
Now, if I divide by 10000000 (is 10^7), the last cipher are rounded:
x_1: 46.360608
, that is not 46.3606075 (the ...075 is rounded to ...08). I don't want any type of approssimation. How can I solve this problem? Thank you everybody for your help!