我仍然是一名独立工作的新程序员。
我的程序逐行读取。
我在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;
答案 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;