C++文件流操作,从文件中读取数据并显示

8 篇文章 0 订阅
#include <iostream>
#include <iomanip>
#include <fstream>
#include <cstdlib>
#include <string>
using namespace std;
int main()
{
    ifstream inFile;
    inFile.open("get.txt");
    if(!inFile.is_open()){
        cout << "Can't open the File" << endl;
        exit(0);
    }
    int age[7];
    int count = 0;
    string name[7];
    string s_name;
    while(!inFile.eof()){
         getline(inFile,s_name);
        if(s_name[0] == '\0'){
            cout << "读取到换行符" << endl;
        }
        cout<<"Read one line:"<<s_name<<endl;

        inFile >> age[count];
        inFile >> name[count];
        ++count;
    }
    for(count = 0 ; count < 7 ; count ++){
        cout << age[count] << endl;
        cout << name[count] << endl;
    }
    inFile.close();

}

//代码分析

//红色部分为为了区分getline函数与cin的区别,而加的额外的代码

//由于get.txt文件中有多行,所以我定义了数组形式

首先引入fstream头文件

其次定义ifstream变量(注意和ofstream的区别)

然后便可以像使用cin一样使用ifstream所定义的变量

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值