Guest User

Untitled

a guest
May 25th, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. R version 3.4.4 (2018-03-15) -- "Someone to Lean On"
  2. Copyright (C) 2018 The R Foundation for Statistical Computing
  3. Platform: x86_64-pc-linux-gnu (64-bit)
  4. [...]
  5.  
  6. > round(55.8/1.8)
  7. [1] 31
  8. > 55.8/1.8
  9. [1] 31
  10. > round(55.8/1.8) == (55.8/1.8)
  11. [1] FALSE
  12. > round(55.8/1.8) - (55.8/1.8)
  13. [1] 3.552714e-15
  14.  
  15. > format(55.8/1.8, digits=22)
  16. [1] "30.99999999999999644729"
Add Comment
Please, Sign In to add comment