在 C++ 中用 cout 打印正确的小数点位数
本文将介绍如何按一些预定义的小数位数打印某些浮点数。在 C++ 中,我们可以使用带有 cout 的 setprecision 来实现此操作。它出现在 C++ 的 iomanip 头文件中。
示例代码
#include <iostream> #include <iomanip> using namespace std; int main() { double x = 2.3654789d; cout << "Print up to 3 decimal places: " << setprecision(3) << x << endl; cout << "Print up to 2 decimal places: " << setprecision(2) << x << endl; cout << "Print up to 7 decimal places: " << setprecision(7) << x << endl; }
输出
Print up to 3 decimal places: 2.365 Print up to 2 decimal places: 2.37 Print up to 7 decimal places: 2.3654789
广告