DEV C++如何进行文件输入输出,最好能给一个过程。
变了一个这样的过程:#include<fstream>usingnamespacestd;ifstreamfin("test.in");ofstreamfout("tes...
变了一个这样的过程:#include<fstream>
using namespace std;
ifstream fin("test.in");
ofstream fout("test.out");
void init(void)
{
int a,b;
fin >>a>>b;
fout <<a<<b;
getchar();
getchar();
getchar();
}
函数名为test.cpp,怎样进行文件输入输出? 展开
using namespace std;
ifstream fin("test.in");
ofstream fout("test.out");
void init(void)
{
int a,b;
fin >>a>>b;
fout <<a<<b;
getchar();
getchar();
getchar();
}
函数名为test.cpp,怎样进行文件输入输出? 展开
2个回答
2013-09-22
展开全部
#include<iostream>
#include<fstream>
using namespace std;int main()
{
int a,b,c,d;
fstream file("test.txt",ios::in|ios::out);
a=1;b=2;
file<<a<<' '<<b;
file.seekg(ios::beg);
file>>c>>d;
cout<<c<<' '<<d<<endl;
file.close();
return 0;
}
这是个我写的文件输入输出的小例子,用法和cin和cout差不多,你可以参考下
#include<fstream>
using namespace std;int main()
{
int a,b,c,d;
fstream file("test.txt",ios::in|ios::out);
a=1;b=2;
file<<a<<' '<<b;
file.seekg(ios::beg);
file>>c>>d;
cout<<c<<' '<<d<<endl;
file.close();
return 0;
}
这是个我写的文件输入输出的小例子,用法和cin和cout差不多,你可以参考下
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-09-22
展开全部
或者定义一个临时变量temp加上cin>>temp;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询