strange situation, when performing the following lines of Code:
const float a = 47.848711;
const float b = 47.862952;
float result = b - a;
I get a (NSLog %.10f) result = 0.0142440796.
I expected to get 0.0142410000.
What's going on?
|
strange situation, when performing the following lines of Code:
I get a (NSLog %.10f) result = 0.0142440796. I expected to get 0.0142410000. What's going on? |
|||||
|
|
What if I ask you the following:
In this case, the answer is obvious, right? 1.3 isn't an integer, so the actual value that gets stored in The exact same thing is happening in your example. 47.848711 isn't a single-precision float, so the closest floating-point value is stored in
Similarly, the value stored in
When you subtract these numbers to get
When you round that value to 10 digits to print it out, you get:
|
||||
|
|
|
Classic! What Every Computer Scientist Should Know About Floating-Point Arithmetic (basically, floating points can be inaccurate; wikipedia). |
||||
|
|