ruby 中的数字四舍五入
只是想知道如何在红宝石中将数字“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这不是你想要的吗?
啊,您可能正在使用 1.8(为什么?)。在那里您可以执行以下操作:
您可以将其包装在辅助函数中:
Is this not what you want?
Ah, you are probably using 1.8 (why btw?). There you can do the following:
You could wrap that up in a helper function: