C++ 读取一个文件时,统计文件中的换行符应该怎么判断?
1个回答
展开全部
getline每次读取一行字符,也就是遇到“\n"就截断,所以你就打开文件不断用getline读文件,直到最后,然后计数读了多少个getline
int count=0;
string temp;
ifstream input;
input.open ("your file");
while ( input.good() && !input.eof() ) {
getline (input,temp);
count++;
}
cout << count;
int count=0;
string temp;
ifstream input;
input.open ("your file");
while ( input.good() && !input.eof() ) {
getline (input,temp);
count++;
}
cout << count;
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询