c++ 读取txt文件并输出到控制台

代码如下:

#include "stdafx.h"
#include<iostream>
#include<fstream>
#include<cstdlib> //support for exit()
#include<string>
int main()
{
    using namespace std;
    
    ifstream inFile("C:\Users\Administrator\Desktop\1.txt");
    string str;
    while (inFile.good())
    {
        getline(inFile, str);  //该方法来自<string>
        cout << str << endl;
    }
    cout << "hello world";
    cin.get();
    return 0;
}
原文地址:https://www.cnblogs.com/heben/p/6004727.html