It's a coding practice. I read these numbers as double
from a file:
112233 445566
8717829120000 2.4
16000000 1307674.368
10000 2092278988.8
1234567 890123
After some computation, I should output some of them. I want to make them appear just the same as in the file, no filling zeros, no scientific notation, how could I achieve it? Do I have to read in as string then convert them?
Edit: Erm...Do you guys mean that there is actually no way for the program to know how the numbers look like originally?