文本文件读取

今天有个项目要用到从文本文档中读取文档的行和列,网上查了很多资料,都是利用getline实现的居多,对于初学者来说可以有更加简便的实现方法,利用get()函数进行操作,个人感觉更加清晰易懂

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

int main()
{
    int i=0;
    int r=0;
    char c;
    ifstream readfile;
    readfile.open("output.txt",ios::in);
    if(readfile.fail())
    {
        cout<<"can't open the file";
    }
    else {

        while(readfile.get(c))
           {
            if (c==' ')      //计算数据之间的空格
                i++;
            if(c=='\n')
                r++;       //计算回车个数
        }
         cout<<"the line is "<<i<<" the rank is "<<r<<endl;
     readfile.close();
    }
}

可以通过这个程序找到数据之间的空格计算每行有多少个数据,这里算的是空格数,如果要是计算每行的数据,就把初始值i=1;即可

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值