假设我有一个像这样的文本文件
6 3
john
dan
lammar
我可以读取数字,并且只有在单独的文件中才能读取名称。但是这里的数字和名称都在一个文件中。我如何忽略第一行并直接从第二行开始阅读?
int main()
{
vector<string> names;
fstream myFile;
string line;
int x,y;
myFile.open("test.txt");
//Im using this for reading the numbers
while(myFile>>x>>y){}
//Would use this for name reading if it was just names in the file
while(getline(myFile,line))
names.push_back(line);
cout<<names[0];
return 0;
}