My friend an I are having trouble trying to create this program.It's our first year taking a C++ class and our book isn't helping us at all with the program. If anyone can help us that'd be great. :D
Here's the program:
Write a program that takes 10 grades entered from the user and determines which is the lowest, highest and average grade from the list.
Your program will use an array of size 10 (float) and 3 functions will determine which is the lowest, highest and average scores
getLowest();
getHighest();
getAverage();
Output the results to the user once determined.
Since it's only 10 grades " so you already know how many variables " why not declaring these 10 variables and then compare it by using if else ? , the average is easy to determine.