Question
C++ Write a program to compute numeric grades for a course. The course records are in a file (that you will create) that will serve
C++
Write a program to compute numeric grades for a course. The course records are in a file (that you will create) that will serve as the input file. The input file should be in exactly the following format: Each line contains a student's last name, then one space, then the student's first name, then one space, then ten quiz scores all on one line. The quiz scores are whole numbers and are separated by one space. Your program will take its input from the file and send its output to a second file. The data in the output file will be the same as the data in the input file except that there will be one additional number (of type double) at the end of each line. This number will be the average of the student's ten quiz scores. Allow the user to run the program as many times as they would like. Validate that the files opened properly.
Using Visual Studio 2022
Step 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