Looping with for, foreach, do, while

controlling_the_flow_of_execution
Jason Zhu 2021-02-19 03:13:57 +00:00
parent 6c7ba8624f
commit 009cdc3919
1 changed files with 14 additions and 5 deletions

View File

@ -26,12 +26,21 @@ namespace GradeBook
result.highGrade = double.MinValue;
result.lowGrade = double.MaxValue;
foreach (var grade in this.grades)
// foreach (var grade in this.grades)
// {
// result.lowGrade = Math.Min(grade, result.lowGrade);
// result.highGrade = Math.Max(grade, result.highGrade);
// result.Average += grade;
// }
var index = 0;
do
{
result.lowGrade = Math.Min(grade, result.lowGrade);
result.highGrade = Math.Max(grade, result.highGrade);
result.Average += grade;
}
result.lowGrade = Math.Min(grades[index], result.lowGrade);
result.highGrade = Math.Max(grades[index], result.highGrade);
result.Average += grades[index];
index += 1;
} while (index < grades.Count);
result.Average /= grades.Count;
return result;