Write a C++ program that will ask for the following input from the user: Student Name: Program/Course: Year Level: (shou
Posted: Thu May 26, 2022 9:42 am
Write a C++ program that will ask for the following input from the user: Student Name: Program/Course: Year Level: (should be integer type) Number of Units Enrolled: (should be double or float data type) Determine the corresponding year name of the student and rate per unit as follows: Year Level Year Name Rate Per Unit 1 Freshman 1,500 2 Sophomore 1,800 3 Junior 2,000 4 or 5 Senior 2,300 Compute the tuition fee as follows: Tuition fee no. of units enrolled X rate per unit Down payment = 30% of the tuition fee Balance = tuition fee - down payment Assume that the user will not enter an invalid value.