Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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 averageStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started