Question: The programming language is C++ Name: Functions - Chapters 11 ITSE 1302 You will write a program that uses two parallel one-dimensional arrays. This program
The programming language is C++

Name: Functions - Chapters 11 ITSE 1302 You will write a program that uses two parallel one-dimensional arrays. This program will find a student's letter grade in a class. The program will ask the user to enter in the possible points for the class, as well as the total number of points that student received. So if the class average comes from four 100 point tests, then 400 total points are possible. If a student receives 350 points out of the possible 400 points, they would receive a B in the class because 350 is 87.5% of the total 400 points. The program should initialize two one-dimensional arrays. The array that stores the letter grades should be initialized with the following: A, B, C, D, and F 1. 2. Get the user to enter the total possible points and then the points they received. The program must use another array that stores the minimum number of points for each letter grade. This should be calculated (assigned to the array in a loop) and be based on the total number of possible points. The minimum points for each grade must be calculated because they will change based on the user input. Also, make sure that 3. the minimum points array corresponds to each value in the grade array. Grade Minimum points 90% of the possible points 80% of the possible points 70% of the possible points 60% of the possible points Use another loop to determine the user's grade based on the total points they received. We want to be efficient, so the loop should stop as soon as it determines the letter grade. This means that if you should receive a B, the loop should only loop through twice 4. 5. Display the letter grade to the user
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
