如何舍入到某个浮点精度?
我认为这是一个简单的问题。我希望:
a = 1.154648126486416;
成为:
a = 1.154;
而不是:
a = 1.15000000000;
在不使用 format('bank')
的情况下如何做到这一点。
I think it's a simple question. I want:
a = 1.154648126486416;
to become:
a = 1.154;
and not:
a = 1.15000000000;
How do I do that without using format('bank')
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你可以这样做:
You could do this:
基于 @gnovice 的答案,您可以将输出格式化为字符串以消除多余的零。请参阅
sprintf
所有格式选项的文档。将显示“结果是 1.154”。在命令提示符下。或者将字符串写入文件等。
Building on @gnovice's answer, you can format the output as a string to get rid of the extra zeros. See the
sprintf
documentation for all the formatting options.will show "The result is 1.154." in the command prompt. Or write the string to file, etc., etc.
答案是 1.1540
如果您不关心其余数字,那么这很好,但如果您确实关心,那么您只需将“floor”更改为“round”即可。
答案是 1.1550
The answer is 1.1540
this is good if you don't care about the rest of digits but if you do care then you just have to simply change "floor" to "round".
The answer is 1.1550