gpt4 book ai didi

Python 舍入错误

转载 作者:太空宇宙 更新时间:2023-11-03 12:17:31 24 4
gpt4 key购买 nike

我只是用 python 作为计算器,我看到了这个

Python 2.7.3 (default, Aug  1 2012, 05:14:39) 
[GCC 4.6.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> 62 * 41.2 * 2 / 250
20.435200000000002
>>> 62 * 4.12 * 2 / 25
20.4352
>>>

只是为了确保我通过 gcc 触发了以下代码,但这并没有向我展示上述行为。我知道这可能是四舍五入的东西,但它应该是统一的。为什么 python 在数学上不应该存在尾随 00000000002 的情况下加起来。

C/C++代码

#include <stdio.h>
int main () {
printf ("%lf %lf \n", 62 * 41.2 * 2 / 250, 62 * 4.12 * 2 / 25);
}

结果

20.435200 20.435200

如果有人对他们属于某些发动机排量计算比较的特定数字感到好奇:)

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com