gpt4 book ai didi

c++ - 如何在 C++ 中将小数点后两位数字 78.125 打印为 78.13

转载 作者:搜寻专家 更新时间:2023-10-31 01:34:16 24 4
gpt4 key购买 nike

我的作业涉及打印出小数点后两位数的双数。在其中一个示例测试中,我得到的输出是 78.125。我的老师教我使用setprecision函数打印出数字

#include <iomanip> 
...some code
cout << fixed << setprecision(2);
cout << x /*the number*/

通常这样就可以了。但是,示例输出为 78.13,而我的代码输出为 78.12。无论如何我都不知道该怎么做。

最佳答案

std::coutstd::setprecision 的舍入行为是实现定义的

C++11 通过提供一个名为 std::fesetround 的函数来解决这个问题,您可以使用它来调用

std::fesetround(FE_TONEAREST);

在您的 std::cout 语句之前。参见 http://en.cppreference.com/w/cpp/numeric/fenv/feround了解更多详情。

关于c++ - 如何在 C++ 中将小数点后两位数字 78.125 打印为 78.13,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39878369/

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