我的程序在另一行读取名字和姓氏,而我需要它一起读取名字和姓氏

时间:2017-06-12 07:06:27

标签: c++

我仍然是一名独立工作的新程序员。

我的程序逐行读取。

我在txt文件上有名字和姓氏

Dennis Brown

John Mike

它输出一行中的每个名字 这是我的代码

cout << " Reading from txt file" << endl;
ifstream file("file.txt");
string content;

while (file >> content) {
    cout << content << ' ';
}
system("pause");
return 0;

1 个答案:

答案 0 :(得分:-4)

You can also try like below,

cout << " Reading from txt file" << endl;

ifstream file("file.txt");

string content;

int i = 0;

while (file >> content) {

    cout << content << ' ';

    i++;

    if (i == 2)

    {cout<<endl;i=0;}

}

system("pause");

return 0;