Hi, i need some pointers on how to approach my assignment. Dont want you to write me the code, just please point me in the right direction.
I need to create a C++ program that requires the user to enter 10 student id numbers and the grade they received in a course. The program should then convert the numerical grade to a letter grade while keeping track of the number of letter (A, B, C, etc…) grades. The output of the program should look similar to what is mentioned below.
Enter Course Name: Business Law
Enter the Student Id Numbers: 1234, 2345, 3456, 4567, 5678, 6789, 7890, 8901, 9012, 0123
Enter the Grades Received: 87, 76, 45, 89, 103, 83, 72, 57, 95, 98
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>ETC>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Student 1234 received a grade of B+
Student 2345 received a grade of C+
Student 3456 received a grade of F
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> ETC >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Number of A Distributed = 3
Number of B+ Distributed = 2
Number of B Distributed = 1
>>>>>>>>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>> ETC>>>>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>>>>
The course Business Law had a course average of 80.5 which is a B
Please help me out