/*
 * TODO:
 * 
 * Define a new class, "CSC148Student", a subclass of the CSCStudent class 
 * we defined earlier, and add the following private instance variables:
 * 
 * boolean hasLabs;
 * boolean isEnrolled;
 *
 * These are just two variables that uniquely distinguish a 
 * CSC148 student from just any old CSCStudent.  Make sure you define a constructor
 * for a CSC148 student (7 parameters), and use the "super" call to initialize
 * the parent class 
 *
 * Add the appropriate getter and setter methods for the new variables.
 *
 * CSC148Student is different from CSCStudent so write its own 
 * toString method.
 * 
 * Once your class is complete, define a main method inside your class
 * in which you will declare an array to store 2 CSCStudents, 2 CSC148Students,
 * 2 Strings, one Integer and one Double (Integer and Double are wrapper
 * classes for their associated primitive types).  Once you have done this, iterate
 * through the array, and print the type of the object stored in that
 * current position to screen.  
 * 
 **/
