I\'m getting numbers like
2.36363636363636 4.567563 1.234566465448465 10.5857447736
How would I get Ruby to round these numbers up (or dow
To get a rounding result without decimals, use Float's .round
5.44.round => 5 5.54.round => 6