c – 如何制作“std :: cout << 123456789.12”print“123456789.12”?

前端之家收集整理的这篇文章主要介绍了c – 如何制作“std :: cout << 123456789.12”print“123456789.12”?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我该怎么做
std::cout << 123456789.12

打印这个:

123456789.12

它始终打印这个:

1.23457e+008

我知道我必须玩旗帜,但我无法弄清楚正确的组合.如果我设置固定标志,则打印

123456789.120000

解决方法

您可以使用:
#include <iostream>
#include <limits>
using namespace std;

int main() {
    double c = 123456789.12;
    cout.precision(numeric_limits<double>::digits10 + 1);
    cout << c << endl;

    return 0;
}

基本上limits package具有所有内置类型的特征.
浮点数(浮点数/双/长双精度)的特征之一是digits10 attribute.这定义了基数10中浮点数的精度.

现场观看:http://ideone.com/Ity9m7

要继续阅读,请查看另一个类似的问题:How do I print a double value with full precision using cout?

原文链接:https://www.f2er.com/c/115888.html

猜你在找的C&C++相关文章