I have a problem with the addition of two float numbers. Code below:
float a = 30000.0f;
float b = 4499722832.0f;
printf("%f\n", a+b);
Why the output result is 450002816.000000? (The correct one should be 450002832.)
|
I have a problem with the addition of two float numbers. Code below:
Why the output result is 450002816.000000? (The correct one should be 450002832.) |
||||
| show 2 more comments |
|
Float are not represented exactly in C - see http://en.wikipedia.org/wiki/Floating_point#IEEE_754:_floating_point_in_modern_computers and http://en.wikipedia.org/wiki/Single_precision, so calculations with float can only give an approximate result. This is especially apparent for larger values, since the possible difference can be represented as a percentage of the value. In case of adding/subtracting two values, you get the worse precision of both (and of the result). |
|||||
|
|
Floating-point values cannot represent all integer values. Remember that single-precision floating-point numbers only have 24 (or 23, depending on how you count) bits of precision (i.e. significant figures). So as values get larger, you begin to lose low-end precision, which is why the result of your calculation isn't quite "correct". |
|||
|
|
|
From wikipedia
So your number doesn't actually fit in |
|||||||
|
floats aren't precise enough to hold all the digits in a number as large asb. Usedoubleorlong doubleinstead. – Tom Zych Sep 7 '11 at 12:59