我可以让 getline() 与 cin (getline(cin,line)) 一起使用,但是当我打开一个流时,它不会从文件中读取该行。该文件包含元素周期表中的元素列表。
例如:
H
He
O
等...
编辑:
但是,当我尝试 cout 新读取的行时,它不会将其放入该行的 var 符号中:
cout << "symbol: " << symbol << endl;
它没有给我任何东西,但它应该返回第一个元素(H)。
#include <fstream>
#include <iostream>
#include <vector>
#include <string>
using namespace std;
void print(vector <string> x)
{
cout << "list of elements:" << endl;
for (int i = 0; i < x.size(); ++i)
{
cout << x[i] << endl;
}
}
int main(int argc, char** argv)
{
string symbol;
vector <string> elementlist;
ifstream readin;
readin.open("Elements.txt");
getline(readin,symbol);
cout << "symbol: " << symbol << endl;
while (!readin.good())
{
elementlist.push_back(symbol);
getline(readin,symbol);
}
print (elementlist);
return 0;
}