Loading

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;
}

 

posted @ 2016-10-27 17:15  注销111  阅读(2402)  评论(0编辑  收藏  举报