假设我有一个文本文件,该文本文件包含以下内容:
你好,世界
欢迎使用 C++
如何从我的 .txt 文件中逐行打印?例如,这是我的代码的一部分
while (getline(input, document))
{
if (!document.empty())
{
if (lineisthere(document)) {
cout << "The word" << // << "is there" << endl;
} else {
cout << "The word" << // << "is not there" << endl;
}
line++;
}
}
input.close(); //closes the input
我希望我的输出看起来像这样:
Hello Word这个词是存在
的 但是,Welcome to C++这个词不存在