C++浮点数据的输出控制

2019-08-16 07:55:53来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

C++浮点数据的输出控制

#include <iostream>
#include <Windows.h>

using namespace std;

int main(void) {
    double value = 12.3456789;

    // cout默认输出6位有效数字
    cout << value << endl;

    // 修改cout的输出精度,设置成输出4位有效数字
    cout.precision(4);
    cout << value << endl;

    // 设置输出小数点后面的5位有效数字
    cout.precision(5);
    cout.flags(cout.fixed); //定点法,设置小数点后面输出的位数
    cout << value << endl;

    // 取消定点法
    cout.unsetf(cout.fixed);
    cout << value << endl;

    system("pause");
    return 0;
}

 输出结果

 


原文链接:https://www.cnblogs.com/tanghaiyong/p/11274414.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:Windows系统Python直接调用C++ DLL

下一篇:长乐培训Day8