我正在尝试读取文本文件,但没有任何结果。我觉得它可能在我的 Visual Studio 资源文件夹中没有正确链接,但如果我双击它 - 它在 Visual Studio 中打开正常,如果我测试它是否打开或者它是否很好,它不会遇到任何问题。该程序现在可以正常编译,但没有输出。没有任何内容打印到我的命令提示符。有什么建议么?
代码
#include <iostream>
#include <iomanip>
#include <fstream>
using namespace std;
int main()
{
char str[100];
ifstream test;
test.open("test.txt");
while(test.getline(str, 100, '#'))
{
cout << str << endl;
}
test.close();
return 0;
}
文本文件
This is a test Textfile#Read more lines here#and here