| you can add this in your const :
valueBelowAvg = 10;
valueAboveAvg = 10;
so when their ask you to change the rules to get a grade, you just change their constant value.
you can use this for array :
var arrType : array [1..maxStudents] of integer;
and for grading, make a function with if.. then.. else.. and compare it with your constant value. |