テキストファイルがあり、テキストファイルには次のものが含まれているとしましょう:
hello world
C++ へようこそ
.txt ファイルから 1 行ずつ印刷するにはどうすればよいですか? たとえば、これは私のコードの一部です
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という単語はありますが、C++ へようこそ
という単語はありません。