1

假设我有一个文本文件,该文本文件包含以下内容:

你好,世界
欢迎使用 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++这个词不存在

4

3 回答 3

2

看起来您只想document在您指定的地方使用//

cout << "The word " << document << " is there" << endl;
于 2012-11-19T21:29:08.447 回答
0

试试这个:

#include <iostream>
#include <fstream>
#include <string>
using namespace std;

int main () 
{
  string text;
  ifstream ifs("hello.txt");


    while(!ifs.eof()) 
    {
      getline(ifs,text);
      cout << "" << text << "\n" ;
    }

  return 0;
}
于 2012-11-19T22:00:32.820 回答
0

此代码逐行打印文本文件:

    #include<iostream>
#include<fstream>
#include<cstdlib>
#include<iomanip>
using namespace std;
int main()
{
string filename;
ifstream file;
    cout<<"enter file name";
    getline(cin,filename);
     filename.append(".txt");
    file.open(filename.c_str());


    string text;
    while(getline(file,text))
    {
        cout<<text<<endl;
    }
file.close();

    return 0;
}
于 2020-12-31T13:23:40.237 回答