0

我使用 Putty 进行编码,所以我的问题虽然范围很广,但却是从该程序的角度提出的。

您如何从命令行获取文件并将其逐行读取到主程序中,然后可以将其打包并在函数中进行操作?我了解您使用 fstream 类,但我不确定从文件中实际读取行的正确程序

4

1 回答 1

1

这是一个简单的示例:

ifstream in("file.txt");

if (!in.is_open())
{
    cout << "Error - cannot open the file." << endl;
    return 0;
}

string line;
while (getline(in, line))
{
    cout << line << endl;

    ...

}
于 2013-10-12T16:22:33.590 回答