Home  >  Q&A  >  body text

The use of c++ fstream and getline.

ifstream input(s);
input>>V;
input>>E;
string text;
while(getline(input,text))
{
    cout<<text<<endl;
}
``

代码就是这样,那个s是文件路径,txt文件如下:
11
5
0 5
4 3
0 1
9 12
6 4
5 4

就是这样的数字,中间没有空行。读的时候,11 和5 确实读进V和E了,但是在0 5之前却读入了一个空行。
本来这中间是没有空行的。请问这是为什么?往上搜了也没找到答案。谢谢大家。
迷茫迷茫2735 days ago582

reply all(1)I'll reply

  • PHP中文网

    PHP中文网2017-05-16 13:29:58

    Is it because I input>>E, and then the input is an "n" at this time, and getline reads the line break after element 5 in the second line?

    reply
    0
  • Cancelreply