文本文件读取
程序员文章站
2024-01-19 14:46:10
...
今天有个项目要用到从文本文档中读取文档的行和列,网上查了很多资料,都是利用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;即可