在 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

更新于: 30-Jul-2019

14K+ 浏览

启动你的 职业

通过完成课程获得认证

立即开始
广告