请问在C++中, 如何把double类型的数组里的数写入到TXT文件中。谢谢
3个回答
展开全部
#include <iostream>
#include <stdio.h>
#include <fstream>
using namespace std;
int main()
{
double a = 3.1415926;
char* str = new char[20];
memset(str,0,20);
sprintf(str,"%.7f",a);//将a格式化输出到str中,取小数点后7位
ofstream sm("test.txt");
if (!sm)
{
cout << "File could not be opened" << endl;
}
else
{
sm.write(str,strlen(str));
}
delete str;
system("pause");
return 0;
}
#include <stdio.h>
#include <fstream>
using namespace std;
int main()
{
double a = 3.1415926;
char* str = new char[20];
memset(str,0,20);
sprintf(str,"%.7f",a);//将a格式化输出到str中,取小数点后7位
ofstream sm("test.txt");
if (!sm)
{
cout << "File could not be opened" << endl;
}
else
{
sm.write(str,strlen(str));
}
delete str;
system("pause");
return 0;
}
展开全部
double arry[size];
ofstream outfile("filename");
//path 1:
outfie.write((char*)arry,sizeof(arry));
//path 2:
int i = 0;
while(i != size)
{
outfile << arry[i++];
}
ofstream outfile("filename");
//path 1:
outfie.write((char*)arry,sizeof(arry));
//path 2:
int i = 0;
while(i != size)
{
outfile << arry[i++];
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
办法很多,
先把数用sprintf转成串,再把串写入文件中
先把数用sprintf转成串,再把串写入文件中
追问
能否具体一点,需要调用哪些函数,函数格式怎么样?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询