可能重复:
转换的双重固定小数点在C ++中
假设,我有double a = 0
,我想打印为0.0000
。
我已经试过这样:
cout.precision(4) ;
cout<<a<<endl ;
但它gaves 0
作为输出。
可能重复:
转换的双重固定小数点在C ++中
假设,我有double a = 0
,我想打印为0.0000
。
我已经试过这样:
cout.precision(4) ;
cout<<a<<endl ;
但它gaves 0
作为输出。
试一试:
#include <iomanip>
...
cout << fixed << setprecision(4);
cout << a << endl;
见这里 。
#include <iomanip>
#include <iostream.h>
int main()
{
double a = 0.00;
// print a double, 2 places of precision
cout << setprecision(4) << a << endl;
}