1 #include <iomanip>
double num = 1.6090123;
2 3 //输出num精确到小数点后三位 4 5 cout << std::fixed << std::setprecision(3) << num << endl;
1 #include <iomanip>
double num = 1.6090123;
2 3 //输出num精确到小数点后三位 4 5 cout << std::fixed << std::setprecision(3) << num << endl;