/Display highest score


for (int t = 0; t < grades.length; t ++)
{
if (grades[t] > max)
{
max = grades[t];
...