ruby 中的数字四舍五入

发布于 2024-12-11 01:47:17 字数 86 浏览 1 评论 0原文

只是想知道如何在红宝石中将数字“15.755”四舍五入为“15.76”。

我已经尝试过圆形方法,但没有产生我想要的结果。

谢谢

Just wondering how would i round the number "15.755" up to "15.76" in ruby.

I have tried the round method, but doesnt produce the result im looking for.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月亮邮递员 2024-12-18 01:47:17

这不是你想要的吗?

>> 15.755.round(2)
=> 15.76

啊,您可能正在使用 1.8(为什么?)。在那里您可以执行以下操作:

>> (15.755 * 100).round / 100.0
=> 15.76

您可以将其包装在辅助函数中:

def round(n, precision)
  raise "Precision needs to be >= 0" if precision < 0
  power_of_ten = 10 ** precision
  (n * power_of_ten).round / power_of_ten.to_f
end

round(15.755, 2) #=> 15.76

Is this not what you want?

>> 15.755.round(2)
=> 15.76

Ah, you are probably using 1.8 (why btw?). There you can do the following:

>> (15.755 * 100).round / 100.0
=> 15.76

You could wrap that up in a helper function:

def round(n, precision)
  raise "Precision needs to be >= 0" if precision < 0
  power_of_ten = 10 ** precision
  (n * power_of_ten).round / power_of_ten.to_f
end

round(15.755, 2) #=> 15.76
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文