Round a ruby float up or down to the nearest 0.05

后端 未结 9 1770
日久生厌
日久生厌 2020-12-29 04:43

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

9条回答
  •  旧巷少年郎
    2020-12-29 04:46

    To get a rounding result without decimals, use Float's .round

    5.44.round
    => 5
    
    5.54.round
    => 6
    

提交回复
热议问题