如何在 C++ 中使用 cout 以全精度打印双精度值?
输出流 cout 允许使用一些操作数,你可以直接在 cout 上设置精确度并使用固定格式说明符。要获得双精度的全精度,你可以使用 limits 库。例如,
示例
#include<iostream> #include <limits> using namespace std; int main() { // Get numeric limits of double typedef std::numeric_limits< double > dbl; double PI = 3.14159265358979; cout.precision(dbl::max_digits10); cout << "Pi: " << fixed << PI << endl; return 0; }
输出
这将给出以下输出 -
3.14159265358979
广告