Task 4: Print highest grade
where
a : high = 0;
b : if (grade > high) high = grade;
b’ : high = Math.max(grade, high);
g : System.out.println( high );
/* “Process” grades until (but not including) a stopping signal of -1. */
int grade; // the grade being processed.
int high; // highest grade so far.