/*
 * 
 * TODO:
 * 
 * - Write Javadoc for your class and run and test to ensure it is complete and correct.
 *
 * - Declare and define a class called "CSCStudent" which has 
 *   instance variables representing:
 *
 *    String student name
 *    int age 
 *    String gender
 *    String student number
 *    double program fees
 *    double comp sci minimum GPA requirement
 *    String gpa
 *    int total number of students enrolled
 * 
 * Note: For each variable, think about whether the variable should be static or not.
 * 
 * - Provide 3 constructors : NOTE: these are NOT method headers.  Please change 
 * depending on what type your variables are.
 * 
 * public CSCStudent()
 * public CSCStudent(name)
 * public CSCStudent(name, age, sex, studentNum, gpa) 
 *
 * Note: For each method, think about whether it is a procedure or function,
 * what its parameters should be, and whether it is Static or not.
 *
 * - Provide getter and setter methods for each of the instance variables
 * 
 * - Write an equals and toString method that seem appropriate.
 *
 * - add a method that you can use to calculate their percentile. 
 *   Use the following calculation: gpa / 4 * 100 (note: this is not the correct calculation, it is
 *   just simplified for our purposes)
 * 
 * - write method isEligible that determines if a student meets the GPA requirements for
 *   the computer science program
 * 
 * - write a method that returns the total number of students in the computer science department
 * 
 */
