能不能用fstream和vector编写一段代码,使C++能读取txt文件并录入数据还能进行筛选,最后输出呢?
1个回答
展开全部
可以,可以采用文件操作,例如采用以下程序。
再加入vector存放录入的数据,处理完成之后,输出vector中的数据即可
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main()
{
ofstream fout ("d:\\testout.txt");
ifstream fin ("d:\\testin.txt");
int a, b;
fin >> a >> b;
fout << a+b << endl;
return 0;
}
再加入vector存放录入的数据,处理完成之后,输出vector中的数据即可
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main()
{
ofstream fout ("d:\\testout.txt");
ifstream fin ("d:\\testin.txt");
int a, b;
fin >> a >> b;
fout << a+b << endl;
return 0;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询