double类型变量输出到文本文件(txt) 控制输出有效位数

在C++中将double变量输出到txt文本中时,使用默认的输出操作符输出,只能输出6位有效数字,有时不能达到精度要求。没有精度控制,将double变量输出到txt的代码如下

#include <fstream>
using namespace std;
int main()
{
    double  variable = 1.0 / 3;
    ofstream   myfile("double.txt");
    myfile << variable;
    myfile.close();
    return 0;   
}

txt中输出结果为: 0.333333,六位有效数字
可以通过std::setprecision( )函数来控制输出精度,使用该函数需要添加头文件。

#include <fstream>
#include <iomanip>
using namespace std;
int main()
{
    double  variable = 1.0 / 3;
    ofstream   myfile("double.txt");
    myfile <<  std::setprecision(10) << variable;
    myfile.close();
    return 0;
}

txt中输出结果为: 0.3333333333,十位有效数字

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值