我正在完成一项家庭作业,我遇到一个小问题,循环使用该函数返回文件中每个名称的参数。我希望有人可以快速查看这个,并建议我应该放置一个循环。我到处尝试过对我有意义的事情。快速概述功能的工作原理。它会查看包含多个学生,成绩和文件的文件。课程的小时数然后计算每个学生的GPA。将学生姓名和GPA返回给Main,然后调用另一个函数来创建输出文件。目前,唯一创建的文件是文件中的最终学生(Miguel Ortiz和他的GPA)。
对不起,这段代码很难看。样本文件很荒谬!
输入文件如下所示:
Jack Johnson
A
2
C
3
F
2
D
2
B
4
A
4
Miguel Ortiz
C
4
A
3
F
2
代码编写:
public static void ProcessGrades(ref string File, out string Name, out double GPA)
{
string FilePath = @"C:\Users\heathi\Documents\Visual Studio 2013\Projects\" +
@"GPA Calculation\GPA Calculation\bin\Release\";
StreamReader inFile = new StreamReader(FilePath + File);
double gpa = 0.0;
string letterGrade = "";
string line;
double grade = 0;
double hours = 0;
double points = 0;
double i = 0;
bool result = false;
string studentName = "";
while ((line = inFile.ReadLine()) != null)
{
if (line.Length > 1)
{
if (studentName != line)
{
if (hours != 0)
{
gpa = (points / hours);
gpa = Math.Round(gpa, 2);
Console.WriteLine(studentName + " GPA " + gpa.ToString());
}
studentName = line;
points = 0;
hours = 0;
grade = 0;
}
}
else
{
result = double.TryParse(line, out i);
if (result == true)
{
hours += double.Parse(line);
points += (grade * double.Parse(line));
}
else
{
letterGrade = line;
switch (letterGrade)
{
case "A":
grade = 4;
break;
case "B":
grade = 3;
break;
case "C":
grade = 2;
break;
case "D":
grade = 1;
break;
case "F":
grade = 0;
break;
}
}
}
}
gpa = (points / hours);
gpa = Math.Round(gpa, 2);
Console.WriteLine(studentName + " GPA " + gpa.ToString());
Name = studentName;
GPA = gpa;
} // end ProcessGrades
答案 0 :(得分:0)
我认为你需要创建一个字典而不是返回一个名字,而是在循环中将每个学生和成绩放在字典中。
从函数中返回字典以进行进一步处理。