gpt4 book ai didi

c++ - cout.setf(ios::fixed|ios::showpoint);设置精度超过原数

转载 作者:太空宇宙 更新时间:2023-11-04 13:16:24 25 4
gpt4 key购买 nike

    #include <iostream>
#include <iomanip>
using namespace std;

int main()
{
float f = 17793.03;
cout.setf(ios::fixed|ios::showpoint);
cout<<setprecision(3);
cout<<f<<endl;
}

结果17793.029

我以前用的是Python,不知道为什么会这样。谢谢

最佳答案

可能是因为无法对数字 17793.03 进行编码,因此编译器将其四舍五入为最接近的可编码 float 。试一试

[编辑] float 在 32 位上编码,在 64 位上加倍。所以他们有一个“双”精度,所以更精确

关于c++ - cout.setf(ios::fixed|ios::showpoint);设置精度超过原数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37102517/

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