码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2016-10-27 19:57:03      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:方法   style   bsp   line   use   blog   log   code   stream   

代码如下:

#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文件并输出到控制台

标签:方法   style   bsp   line   use   blog   log   code   stream   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!