Please can someone help me with this...look in the description
From your understanding of arrays and functions, write a C++ program to calculate oneās GPA for a semester. The program should have the following features; ā¢ The number of courses it can calculate the GPA on should be dynamic, that is, it should be able to calculate any number of courses entered by a user. ā¢ The program should ask of the userās name and programme. This should be used to print something like a semester report at the end of the calculation to the user. ā¢ The program should ask of the individual courseās grade (e.g., A, B+ā¦) and the grades should then be converted to its corresponding grade point for calculation. ā¢ Write and use a function for the conversion in the above statement. ā¢ The program should as well ask of the individual courseās credit hours as it will be used in the calculation. ā¢ Make sure that the program requests the individual credit hours after each grade is enter. For instance, if grade for course 1 is entered, the next request should be credit hours for course 1.