Question: 2 .cpp files, 1 header, and the .txt Objectives: Practicing Structs Basic practice on classes. Integrity Statement: Read carefully! Strict directives have been given to

 2 .cpp files, 1 header, and the .txt Objectives: Practicing StructsBasic practice on classes. Integrity Statement: Read carefully! Strict directives have been

2 .cpp files, 1 header, and the .txt

Objectives: Practicing Structs Basic practice on classes. Integrity Statement: Read carefully! Strict directives have been given to the assistants who will be marking this homework as a departmental policy is being developed on cheating. Any student caught in any form of cheating will be given zero (0) the first time. (We will not get into the issue of who copied from whom!!!). If such an act reoccurs, the case will be sent to the Student Discipline Committee. Submit this cover page with your assignment and sign here that you have read and understood this "Integrity Statement" paragraph. 1/2 Define a struct called Course that has the components code, title, grade (of type string), credit, and cost (of type integer). Define a struct called Finance that has the components type of type string), and amount of type integer). Define a class called Student that has private members id, name, number of Courses, the array listOfCourses[30] of struct variables of type Course, numberOfFinances of type integer, the array listOfFinances[5] of struct variables of type Finance, and GPA of type float. The class also has the public members set(string, string), print(), calculate GRAO, findFinance, and a default parameterized constructor with default values "12345678" and "Omar Ali" as the student id and name. To calculate the tuition fees of each course, multiply the number of credits by the cost of that course. Save the two structs and the class definitions in the file Studenth Implement the member functions of the class in the file StudentImp.cpp Save the following driver in the file Student.cpp int main() { Student one; one.print(); one.set("87654321", "Ali Omar"); one.print(); return 0; } reading the following data from the files Courses.txt and Finance.txt Courses.txt 1501116 Programming I, C 1501211 Programming II, B 1501115 Data Structures, D+ 1501365 Advanced Database Systems, C 4 890 3 910 3 900 3 950 Finance.txt Expenditures 3500 Accommodation 5400 Medical 300 produces the following output: 87654321 Ali Omar toke the following courses: 1501116 Programming I 4 1501211 Programming II 3 1501115 Data Structures 3 1501365 Advanced Database Systems 3 890 910 900 950 The GPA was 2.26923 at a cost 21040 dirham

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!