I was wondering if you guys could give me a hand. This is my final assignment for my introductory C++ course and I am a little confused about where to go from here. We are suppose to use our 2nd assignment as a "launching off" point for this new one, but there are so many new requirements that I am confused as to how to start. Here is the assignment:
Write a C++ program that accepts three grades (whole numbers) from the keyboard for any number of students, with the maximum number of students that can be entered is 30 students. For each student, it calculates the average of the three grades and the equivalent letter grade. After reading the grades, processing the average and the letter grade, it prints out the student number, the three grades, the average, and the equivalent letter grade to the screen. You program should define a function-template the will be used for a function to calculate the average grade for three grades (10 points). Your program should also use two functions, one to find the highest average-grade in class and another function to find the least average-grade in class (10 points). In addition, your program will calculate the class average (the average of averages) and prints the result to the screen (10 points). Make sure to document your program and functions by adding multi-lines comment that describe what each function is doing. Do not forget to include your name at the top of the program (10 points). You should utilize one-dimensional arrays data structure for your variables (10 points).
-get number of students
-for every student
-get three grades
-print student number
-compute average of the 3 grades and print
-compute letter grade and print
-class average += student average
-get min and max average
-class avergae /= number of stuents
}
There is no implementation of arrays anywhere here. But then,
You should utilize one-dimensional arrays data structure for your variables
In that case, you'll surely need a struct. Are you ok using structures/records?