Review MathsIsFun: Definition of Average
Review MathsIsFun: Definition of Average. Create a program that asks the user to enter grade scores. Start by asking the user how many scores they would like to enter. Then use a loop to request each score and add it to a static (fixed-size) array. After the scores are entered, calculate and display the high, low, and average for the entered scores.
This one was completed and passed last week. Here are the two new ones for this week, for Dynamic arrays.
1. If your programming language supports it, update the grade score program above to replace the static array with a dynamic array, and extend the array as each item is added to the array. Continue accepting scores until the user enters a negative value.
3. If your programming language supports it, use a built-in sort function to sort the grade scores from the activity above and display the array in order from highest score to lowest score.
I was able to create the programs, and they seem to work, however I am unable to pass GitHub Actions. Here is the failed action. I also added the files in the Additional materials ares. Please help me pass the GitHub Actions