Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ruby-1.8.7 > 1.55.round(1)
- => 1.6
- ruby-1.8.7 > 1.555.round(2)
- => 1.56
- ruby-1.8.7 > 1.155.round(2)
- => 1.16
- ruby-1.8.7 > 10.156.round(2)
- => 10.16
- ruby-1.8.7 > 10.155.round(2)
- => 10.15
- ruby-1.8.7 > 10.165.round(2)
- => 10.16
- ruby-1.9.2 > 10.155.round(2)
- => 10.15
- ruby-1.9.2 > 10.165.round(2)
- => 10.16
Advertisement
Add Comment
Please, Sign In to add comment