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,怎样进行文件输入输出?
展开
 我来答
匿名用户
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差不多,你可以参考下
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2013-09-22
展开全部
或者定义一个临时变量temp加上cin>>temp;
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式