Question: C++ Programming Student Record (20 Points) The purpose of this program is to create a grade report for a course. Write a program that stores
C++ Programming


Student Record (20 Points) The purpose of this program is to create a grade report for a course. Write a program that stores the following data about a student in a structure studentRecord - Student's Name: string type (only FirstName) - Student ID: int type - Assignment Scores: array of 4 integers. Each score is from 100 points. - Average: double type 5. There are 3 students in a course. So, you need to create array of structures to hold data of the three students. When the program runs, it should read the data for each student from a file students.txt (see example below for file format). Average needs to be calculated in your program It should display data in tabular form that lists each student's name, ID, and the 4 assignment scores along with the calculated average of their assignment scores respectively. The program should also calculate and display the Name and ID of the student receiving the highest average
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
