dev c++中怎样从文件输入输出
不想从键盘输入,不知道该建个什么文件把输入输出关联进去。如果devc++不行的话,那VS2005怎么弄?#include<iostream>#include<fstrea...
不想从键盘输入,不知道该建个什么文件把输入输出关联进去。如果dev c++不行的话,那VS2005怎么弄?
#include <iostream>
#include <fstream>
using namespace std;
int main() {
ofstream fout("out.txt");
ifstream fin("in.txt");
int a, b;
fin >> a >> b;
cout<< a+b <<endl;
fout << a+b << endl;
return 0;
}
写了一个这种的,但是一直都不行 展开
#include <iostream>
#include <fstream>
using namespace std;
int main() {
ofstream fout("out.txt");
ifstream fin("in.txt");
int a, b;
fin >> a >> b;
cout<< a+b <<endl;
fout << a+b << endl;
return 0;
}
写了一个这种的,但是一直都不行 展开
4个回答
展开全部
等你学了 FILE 之后在说吧,都还没学呢你,书上有相关函数的
你说的很含混。 我听的云里雾里。
ifstream不是可以关联一个文件么?
这就可以啊。
注:
不清楚你是要编译时的数据文件绑定,还是运行时的数据读取。
你说的很含混。 我听的云里雾里。
ifstream不是可以关联一个文件么?
这就可以啊。
注:
不清楚你是要编译时的数据文件绑定,还是运行时的数据读取。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include<iostream>
#include<fstream>
using namespace std;
int main()
{
fstream infile1;
infile1.open("Ie1.txt",ios::in);
if(!infile1)
{
cout<<"Ie1.txt打不开!\n";
exit(1);
}
int L;
infile1>>L;
cout<<"L="<<L<<"\n";
infile1.close();
system("pause");
return 0;
}
在devC++中运行正常
#include<fstream>
using namespace std;
int main()
{
fstream infile1;
infile1.open("Ie1.txt",ios::in);
if(!infile1)
{
cout<<"Ie1.txt打不开!\n";
exit(1);
}
int L;
infile1>>L;
cout<<"L="<<L<<"\n";
infile1.close();
system("pause");
return 0;
}
在devC++中运行正常
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
开始,运行,cmd,输入文件路径,输入参数
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include <iostream> VS 2005写的
#include <fstream>
#include <string>
using namespace std;
void main()
{
string b;
ifstream ab("ac.txt");//文件名不能为中文 读取
while (getline(ab,b))
{
cout<<b;
}
ofstream abc("sadasd.txt");//文件名不能为中文 写入
abc<<"sadsdf"<<212545;
}
还有不懂的可以问我
#include <fstream>
#include <string>
using namespace std;
void main()
{
string b;
ifstream ab("ac.txt");//文件名不能为中文 读取
while (getline(ab,b))
{
cout<<b;
}
ofstream abc("sadasd.txt");//文件名不能为中文 写入
abc<<"sadsdf"<<212545;
}
还有不懂的可以问我
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询