vote up 0 vote down star

When I give JAVA and C BIG floats and doubles (in the billion range), they convert it to scientific notation, losing precision in the process. How can I stop this behavior?

flag

4 Answers

vote up 11 vote down check

For Java, check out BigDecimal

link|flag
vote up 7 vote down

The conversion to scientific notation is purely an effect of how it's displayed. Changing the display is a matter of how you output it (format specifiers)

floats generally have about 6 digits of precision, which would make them inappropriate to hold a number in the billions. Doubles have about 15 digits of precision, so it should be able to hold numbers well past trillions with full accuracy.

To display a double in C:

printf("%10f", dbl);
link|flag
vote up 0 vote down

Thanks. I just did it in JAVA and BigInteger worked! (Using methods to add is a little wierd, though) Thanks for the solution in C. Stack Overflow is awesome!

link|flag
You should accept the answer you were happy with. :-) – Andrew Oct 11 '08 at 4:45
That same C sollution also works in Java: System.out.println( String.format( "%10f", dbl) ); BigInteger and BigDecimal are used when accuracy can not be compromised by the inherent rounding of floats and doubles. They are not wrong, but they may be overkill. – extraneon Oct 11 '08 at 16:08
vote up -1 vote down

Do you mean that if I convert it to a string, then it will stop this?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.