public class Student1Main {
  public static void main(String [] args) {
    //two students, initial quiz scores of zero
    Student1 aStudent = new Student1("Bart");
    Student1 bStudent = new Student1("Lisa");

    aStudent.addQuiz(100);
    bStudent.addQuiz(82);
    bStudent.addQuiz(95);

    System.out.println("The quiz average for: " + aStudent.getName() 
			+ " is: " + aStudent.getAverageScore());

    System.out.println("The quiz average for: " + bStudent.getName()
                        + " is: " + bStudent.getAverageScore());

    //Note: the above print doubles.  If we want the scores to be printed
    //without the floating-point, how would we do that? 
    
  }
}
