Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 Putty 进行编码,所以我的问题虽然范围很广,但却是从该程序的角度提出的。
您如何从命令行获取文件并将其逐行读取到主程序中,然后可以将其打包并在函数中进行操作?我了解您使用 fstream 类,但我不确定从文件中实际读取行的正确程序
这是一个简单的示例:
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; ... }