/* * */ import java.util.*; public class Problem3Main{ public static void main(String[] args){ Course course = new Course("COMP1406", "Winter 2012"); Person ldn = new Person("Lou", "Nel"); course.instructor = ldn; Person al = new Person("Al", "Dante"); Person sue = new Person("Sue", "Smith"); Person john = new Person("John", "Ward"); Person mary = new Person("Mary", "Franks"); course.addStudent(al); course.addStudent(sue); course.addStudent(john); course.addStudent(mary); course.dropStudent(sue); //Output the Person data System.out.println(""); course.print(); System.out.println(""); course.announce("Assignment #1" , "Assg#1 extended 1 week"); } } //end class