标准C++中怎样读取整个文本文件到string中
1个回答
展开全部
#include <iostream>
#include <string>
#include <fstream>
using namespace std;
int main() {
ifstream fin;
string temp[20],total = "";
char filename[60];
int i = 0;
cout << " Enter the reference file: \n";
cin.getline(filename,'\n');
fin.open(filename,ios::in);
while(fin.good() && i < 20){
getline(fin,temp[i]);
total += temp[i]; // += 已被重载
cout << temp[i] << endl;
i++;
}
//
return 0;
}
#include <string>
#include <fstream>
using namespace std;
int main() {
ifstream fin;
string temp[20],total = "";
char filename[60];
int i = 0;
cout << " Enter the reference file: \n";
cin.getline(filename,'\n');
fin.open(filename,ios::in);
while(fin.good() && i < 20){
getline(fin,temp[i]);
total += temp[i]; // += 已被重载
cout << temp[i] << endl;
i++;
}
//
return 0;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询