ifstream 读取txt文件内容
// 爱码岛编程
#include <bits/stdc++.h>
using namespace std;
int main() {
ifstream fin;
string line;
fin.open("1.txt", ios::in);
// 遇到空格或换行为一次输入
for (int i = 0; i < 2; i++) {
fin >> line;
cout << line << endl;
}
cout << endl;
return 0;
}