📜  c++ 代码示例中固定的精度

📅  最后修改于: 2022-03-11 14:44:51.696000             🧑  作者: Mango

代码示例2
#include  
// the rest of the code
double a = 4.032;
cout << fixed << setprecision(2);
cout << a;
// done;