The student is to create a project that will allow any random set of grades to be analyzed. As it was in Lab Exercise 3,
Posted: Tue Jul 12, 2022 8:21 am
The student is to create a project that will allow any random set of grades to be analyzed. As it was in Lab Exercise 3, the grades are integers between 0-100. Use meaningful names for all variables to help make the code more readable. The student must provide variables for your grade data, minimum grade, maximum grade, average grade, and median grade. Additionally, variables for retaining the number of As, Bs, Cs, Ds, and Fs contained in the grade set must be provided. A structure must be used such that the results will be stored in RAM. Using a random length array containing grades between 0 -100, the student's code must analyze the array and a) Find out the minimum and maximum grade from the set of grades b) Calculate the average and median of the set of grades c) The number of As, Bs, Cs, Ds, and Fs in the set of grades must be found using the traditional letter grade scale. d) All results must be stored in RAM