gpt4 book ai didi

c++ - 使用cout打印正确的小数点数

转载 作者:行者123 更新时间:2023-12-02 10:30:02 24 4
gpt4 key购买 nike

我有一个float值列表,我想用cout打印它们并保留2个小数位。

例如:

10.900  should be printed as 10.90
1.000 should be printed as 1.00
122.345 should be printed as 122.34

我怎样才能做到这一点?

( setprecision似乎对此没有帮助。)

最佳答案

通过<iomanip>,您可以使用 std::fixed std::setprecision

这是一个例子

#include <iostream>
#include <iomanip>

int main()
{
double d = 122.345;

std::cout << std::fixed;
std::cout << std::setprecision(2);
std::cout << d;
}

你会得到输出
122.34

关于c++ - 使用cout打印正确的小数点数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62586571/

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