php中相近的数字相减

发布于 2024-11-27 08:52:51 字数 150 浏览 2 评论 0原文

为什么

输出

0.0099999999999909

我在这里缺少什么?这是 php 5.2。

Why does

<?php echo 194.95-194.94; ?>

output

0.0099999999999909

What am i missing here? This is php 5.2.

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

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

发布评论

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

评论(2

祁梦 2024-12-04 08:52:51

问题是你不能用浮点数精确地表示 0.01。

看看每个程序员都应该了解浮点知识,以获得关于其原因的详细解释,以及该怎么办。

The issue is that you cannot represent 0.01 exactly in floating point.

Have a look at what every programmer should know about floating point for a great explanation of why this is, and what to do about it.

转身以后 2024-12-04 08:52:51

虽然马克的答案是好的,但它可能仍然让你想知道为什么你会得到这样的答案。例如,尝试

<?php echo 0.01; ?>

PHP 愉快地打印 0.01

在您的情况下, 194.95194.94 都以 IEEE 754 中可以容纳的接近二进制形式存储,并且它们的差异与基本的0.01可以被“正确”渲染。

在在线计算器上尝试您的示例,例如 http://babbage.cs.qc .edu/IEEE-754/Decimal.html。应该很有趣。

While Mark's answer is okay, it may still leave you wondering why you got the answer you did. For example, try

<?php echo 0.01; ?>

PHP happily prints 0.01.

In your case 194.95 and 194.94 were both stored in as-close-a-binary-form as could be accommodated in IEEE 754, and their difference was too far away from the basic 0.01 that could be rendered "properly".

Try out your example on an online calcuator such as http://babbage.cs.qc.edu/IEEE-754/Decimal.html. Should be interesting.

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