Question: Using c++ object oriented programming: Your school would like to develop a program that computes the maximum amount of financial aid a qualified student is
Using c++ object oriented programming: Your school would like to develop a program that computes the maximum amount of financial aid a qualified student is entitled to receive in a semester if the student met certain income and grade point levels. Your program should have the following functions: 1. EnterInfos - accepts the student's tuition amount and grade. 2. DataVal - a function that returns true if tuition amount does not exceed Php10,000 and student grade must be at least 2.0. The program should end if the answer is false. 3. computeAid - a function that takes two parameters, tuition and GPA. Using the table below, use the equivalent percentage to solve for the discount. GPA percentage (%) 2.00-1.75 60 1.74-1.5 70 1.4-1.25 80 1.24-1.15 90 1.14 and above 100
aid = GPA * percentage
Include all of these functions, using main function, in to one complete program.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
