fstream怎么用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了fstream怎么用相关的知识,希望对你有一定的参考价值。
#include <iostream>#include <fstream>
using namespace std;
void main()
float x,y,z;
int k;
ifstream indata;
ofstream outdata;
indata.open("in.dat");
if(!indata)
cout<<"can not open the file:in.dat"<<endl;
return;
indata>>x>>y>>z;
indata>>k;
outdata.open("out.dat");
if(!outdata)
cout<<"can not open the file :out.dat"<<endl;
return;
outdata<<x<<" "<<y<<endl;
outdata<<z<<" "<<k<<endl;
indata.close();
outdata.close();
参考技术A 这种问题多上网搜索答案
http://www.cppblog.com/saga/archive/2007/06/19/26652.html 参考技术B 自己摸索咯!~~
以上是关于fstream怎么用的主要内容,如果未能解决你的问题,请参考以下文章