C++中如何把一个多维数组的,通过文件输入输出流把它的内容以行为单位分行写进一个文件中?使之分行存放。
1个回答
展开全部
#include<iostream>
#include<fstream>
#include<string>
using namespace std;
int bb[3][3];
void writeDat()
{
fstream inOut("out.dat",
fstream::in|fstream::out);
if(!inOut){
cerr<<"Unable to open file!"<<endl;
return ;
}
for(int p=0;p<3;++p)
{
for(int q=0;q<3;++q)
inOut<<bb[p][q]<<" ";
inOut<<"\n";
}
inOut.clear();
inOut.seekg(0,fstream::end);
}
int main()
{
for(int i=0;i<3;++i)
for(int j=0;j<3;++j)
bb[i][j]=i*3+j+1;
writeDat();
system("pause");
return 0;
}
#include<fstream>
#include<string>
using namespace std;
int bb[3][3];
void writeDat()
{
fstream inOut("out.dat",
fstream::in|fstream::out);
if(!inOut){
cerr<<"Unable to open file!"<<endl;
return ;
}
for(int p=0;p<3;++p)
{
for(int q=0;q<3;++q)
inOut<<bb[p][q]<<" ";
inOut<<"\n";
}
inOut.clear();
inOut.seekg(0,fstream::end);
}
int main()
{
for(int i=0;i<3;++i)
for(int j=0;j<3;++j)
bb[i][j]=i*3+j+1;
writeDat();
system("pause");
return 0;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询