gpt4 book ai didi

c++ - 使用 cout 以精度 4 打印 double

转载 作者:IT老高 更新时间:2023-10-28 23:10:36 25 4
gpt4 key购买 nike

Possible Duplicate:
Convert a double to fixed decimal point in C++

假设,我有 double a = 0 并且我想将其打印为 0.0000

我试过了:

cout.precision(4) ; 
cout<<a<<endl ;

但它给出了 0 作为输出。

最佳答案

试试吧:

#include <iomanip>
...
cout << fixed << setprecision(4);
cout << a << endl;

here .

关于c++ - 使用 cout 以精度 4 打印 double ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13728425/

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