首页 > 编程语言 > 详细

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

时间:2016-10-27 19:53:55      阅读:744      评论:0      收藏:0      [点我收藏+]

代码如下:

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

 

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

原文:http://www.cnblogs.com/heben/p/6004727.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!