码迷,mamicode.com
首页 > 其他好文 > 详细

08 IO库

时间:2018-08-02 00:08:35      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:name   family   com   分享图片   end   using   输出   bsp   push   

 1 #include<iostream>
 2 #include<vector>
 3 #include<string>
 4 #include<fstream>
 5 using namespace std;
 6 
 7 int main()
 8 {
 9     ifstream in("test.txt");
10     if (!in)
11     {
12         cerr << "打开文件失败" << endl;
13         exit(0);
14     }
15 
16     vector<string> vec;
17     string str;
18     in >> str;
19     while (getline(in, str))
20         vec.push_back(str);
21 
22     for (auto c : vec)
23         cout << c << endl;
24     return 0;
25 }

 

 

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

int main()
{
    ifstream in("test.txt");
    if (!in)
    {
        cerr << "打开文件失败" << endl;
        exit(0);
    }

    vector<string> vec;
    string str;
    in >> str;
    while (getline(in, str))
        vec.push_back(str);

    for (auto c : vec)
        cout << c << endl;
    return 0;
}

test.txt文件内容:

技术分享图片

输出结果:

 

08 IO库

标签:name   family   com   分享图片   end   using   输出   bsp   push   

原文地址:https://www.cnblogs.com/sunbines/p/9404246.html

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