T
Tom McCallum
Is there any way to override the normal output of doubles? I am
outputting numbers around 5 million and would like them to be formatted
normally (5000000) instead of with exponents (5e06). What is the best way
to do this?
I am just using standard out such as
double i = 5000000;
cout << i << endl;
Many thanks in advance,
Tom
outputting numbers around 5 million and would like them to be formatted
normally (5000000) instead of with exponents (5e06). What is the best way
to do this?
I am just using standard out such as
double i = 5000000;
cout << i << endl;
Many thanks in advance,
Tom