现在我正在为一个课程做一个程序,但我不能让 inf.eof 工作。数据文件为:
Julie 100 100 100 100 100
Sam 90 0 100 95 90
Trudy 85 77 100 87 81
Will 85 81 0 89 72
George 81 83 100 79 55
Hannah 87 90 100 99 95
Cathy 93 96 95 82 65
Hal 65 71 0 75 88
Xena 100 100 100 100 0
代码是:
#include <iostream>
#include <fstream>
#include <string>
#include <iomanip>
#include <assert.h>
using namespace std;
double score;
double getave(int a,int b)
{
double average;
average = 1.0 * (a + b)/2;
return average;
}
void getclassave()
{
}
double getgrade(double score)
{
double grade;
if(score >= 90)
grade = 'A';
else if(score >=80)
grade = 'B';
else if(score >= 70)
grade = 'C';
else if(score >= 60)
grade = 'D';
else
grade = 'F';
return grade;
}
void printtitles()
{
}
void main()
{
ifstream inf;
inf.open("input.data");
ofstream outf;
outf.open("data.out");
outf.setf(ios::fixed);
outf.precision(2);
double name, qu1, qu2, prg1, prg2, fnl;
while(!inf.eof())
{
inf >> name >> qu1 >> qu2 >> prg1 >> prg2 >> fnl;
cout << name << endl;
}
system("pause");
}
我现在只在处理 void main(),因为我需要能够读取文件来完成剩下的工作。我希望“whine(!inf.eof())”循环直到它读取最后一行数据,然后通过在输出文件的新行上打印所有名称来显示它是否有效。但现在它会导致一个无限循环,在我的输出文件中输出无限行“-92559631349317830000000000000000000000000000000000000000000000.00”。我在这里做错了什么?