Develop a C++ Menu Driven application to keep track of all following data items, Make sure that your Menu incorporates all functionalities of the app:
Student with the following attributes:
● Student_Id, student full name, average mark and course_id.
Course with the following attributes:
● Course_id, Course designation, number of years to complete and fee.
School with the following attributes:
● School code and highest qualification offered.
Award with the following attributes
● Award code, description and amount.
● Four functions each responsible for capturing data about one of the data items above. Each stored in their respective array.
● A function that searches for a maximum mark of a certain student; identified by their student id.
● A function that checks if award is offered. searched by both their code and description.
● A function that allows replacement of the highest qualification offered by a school.
● Overload a function called DisplayDetails that displays all records for all the four data items.
Comments
Leave a comment