Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
403 views
in Technique[技术] by (71.8m points)

c - Confusion with floating point numbers

int main()
{
  float x=3.4e2;
  printf("%f",x);
  return 0;
}

Output:

340.000000  // It's ok.

But if write x=3.1234e2 the output is 312.339996 and if x=3.12345678e2 the output is 312.345673.

Why are the outputs like these? I think if I write x=3.1234e2 the output should be 312.340000, but the actual output is 312.339996 using GCC compiler.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Not all fractional numbers have an exact binary equivalent so it is rounded to the nearest value.

Simplified example,

if you have 3 bits for the fraction, you can have:

0
0.125
0.25
0.375
...

0.5 has an exact representation, but 0.1 will be shown as 0.125.

Of course the real differences are much smaller.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...