可能重复:
在 C++ 中将双精度转换为固定小数点
假设,我有double a = 0
并且我想将它打印为0.0000
.
我试过这个:
cout.precision(4) ;
cout<<a<<endl ;
但它0
作为输出给出。
可能重复:
在 C++ 中将双精度转换为固定小数点
假设,我有double a = 0
并且我想将它打印为0.0000
.
我试过这个:
cout.precision(4) ;
cout<<a<<endl ;
但它0
作为输出给出。