The aim of this homework assignment is to practice writing classes. This homework assignment will help build towards project 1, which will be to write a program implementing Management of Rosters System.
For this assignment, write a class called Student. This class should contain information of a single student. This information includes:
last name,
first name,
standing,
credits,
gpa,
date of birth,
matriculation date.
For now you can store date of birth and date of matriculation as strings. Your class should support the following functions:
1. Constructor that initializes a Student by accepting all the parameters.
2. Default constructor that initializes everything to default values.
3. Accessor functions for each private instance variable.
4. Mutator functions for each private instance variable.
5. Input function to solicit the information.
6. Output function to print out the information about the student to console.
7. Any other necessary functions you feel are appropriate.
Make sure that the standing is set based on credits and not passed in as a parameter.
When you call mutator function on credits, or initialize an object in a constructor, or through input function, that is where the standing is set.
Write a driver program to test you class.