Computer Science 121
Assignment 3
Due: October 18, 2001

For this assignment you are to add a method to the class that describes a student.  This class reads in data about the student including name, major and number of credits.  Change the number of credits to mean the credits the student has completed and not the number the student is currently taking.  You should also include in the list of data the student’s QPA.  The QPA (quality point average) is a double.  The example on the other side will show you what you have to do to read in a double.

The new method should decide whether or not the student is eligible for a Co-op job.  If the student has completed at least 32 credits and has a QPA of 2.5 or better, he or she is eligible for Co-op.  If either condition is not met, the student will have to wait until it is met.  In either case, display a message that shows whether the student meets the requirements or not.

As before, hand in a disk with your program on it and a printout of your program.  Make sure that you name is on both the disk and the program.  Save the program in a file that has the same name as the main class in the program.  Thus if your main class is called Students, save the program on your disk in a file called Students.java.