C++ 这里应该怎样使用feof()函数。

#include<iostream>#include<fstream>usingstd::cout;usingstd::cin;usingstd::endl;usings... #include <iostream>
#include<fstream>
using std::cout;
using std::cin;
using std::endl;
using std::ofstream;
using std::ifstream;
int main(){
int year;

ifstream inFile("in.txt");
ofstream outFile("out.txt");

while(inFile>>year){

if((year%4==0 && year%100!=0)||(year%400==0)){
outFile<<year<<" is a leap year"<<endl;
}
else

outFile<< year<<" is not a leap year"<<endl;
}
return 0;
}

Please input the data from a file instead of from keyboard,and save the result
into a file. You can use class ifstream and
ofstream,and judge the end of a file by calling
feof()。
展开
 我来答
seizeF
2014-05-26 · TA获得超过412个赞
知道小有建树答主
回答量:207
采纳率:0%
帮助的人:228万
展开全部
你用的是c++标准库中的输入输出类,而feof是c标准库的函数。c++标准库的ifstream没有提供成员函数能够得到C的文件指针FILE*,所以不能用feof来检测文件末尾。这里你的循环条件已经保证了在文件末尾时跳出。如果想要在ifstream上测试文件末尾,可以用eof成员函数。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式