Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 24th, 2012  |  syntax: None  |  size: 0.23 KB  |  hits: 8  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Roundoff Errors: The Sum
  2. Increasing Order Sum: 1.644491e+00.
  3. Decreasing Order Sum: 1.644491e+00.
  4. Relative Error (abs(Incr. Sum - Decr. Sum) / abs(Incr. Sum)) : 2.700465e-15.
  5.        
  6. float a = 1e9;
  7. float b = 1;
  8. a += b;
  9. printf("%fn", a);