/*
   TestExams.java      Authors: Koffman and Wolz
   Application that tests class Exams.
*/
public class TestExams {

  public static void main(String[] args) {
    Exams ex = new Exams();
    ex.findSumAndCount();
    System.out.println("Average score is " + ex.findAve());
  }
}