(C++) I need help creating a code for this program in C++. It must look similar to the output samples provided and also
Posted: Thu Jul 14, 2022 2:17 pm
(C++) I need help creating a code for this program in C++. Itmust look similar to the output samples provided and also the inputvalidation must be the same. I also provided the grading rubric asa guide.
courseSummary.cpp Write a menu-driven interface program that provides the user with two options: 1. Process Grades Summary report. 2. Quit. Option 1 Prompt the user for the name of the file storing the course information. The file contains the following data organized by lines: < Course Number \& Description > < Instructor Name > < Term > Information for each student, stored in two separate lines The first line indicates the name of the student - whitespaces are allowed. The second line shows the student's grade in a class (0−100) The program will read the data stored in the file and display a nicely formatted report showing: List of students \& their grades Highest grade in the class. Lowest grade in the class. Average grade in the class.
Option 2 Display an exit message and stop the program. Notes Input Validation Display an error message if the user enters an invalid menu option. Display an error message if the file entered by the user does not exist. Display average grade with a precision of 1 decimal values. You may use the COP1334C.txt file attached to the Unit 5 - Lab Assignment and Submission Folder for testing purposes.
Counse Summary ApP... Choose one of the following options 1. Process Grades Summary report. 2. Quit. Option: 1 Grades Summary Report... Enter name of file: COP1334C.txt COP1334C - Introduction to C++ Programming Prof. Mary Taboada Term: Summer 2022 List of students Arthur Allen Arlette Blum Ilan Crest Cliff Do Christina Francois Matthew Garcia William Irons Saphire Jones Amari Louis Alexandra Macri Sebastian Orwell Marlene Pinheiro Adam Quest Jean Ross Carla Smith Cin Tian Elizabeth Urich Ramon Vargas Ryan Walters 92977687978152848078858576100609510073100 Highest Grade: 100 Lowest Grade: 52 Average Grade: 84.1 Choose one of the following options 1. Process Grades Summary report. 2. Quit. Option: 2 Good Bye...
The Text version of the Input validations for the Course Summary Appprogram.
∇ Grading Rubric
courseSummary.cpp Write a menu-driven interface program that provides the user with two options: 1. Process Grades Summary report. 2. Quit. Option 1 Prompt the user for the name of the file storing the course information. The file contains the following data organized by lines: < Course Number \& Description > < Instructor Name > < Term > Information for each student, stored in two separate lines The first line indicates the name of the student - whitespaces are allowed. The second line shows the student's grade in a class (0−100) The program will read the data stored in the file and display a nicely formatted report showing: List of students \& their grades Highest grade in the class. Lowest grade in the class. Average grade in the class.
Option 2 Display an exit message and stop the program. Notes Input Validation Display an error message if the user enters an invalid menu option. Display an error message if the file entered by the user does not exist. Display average grade with a precision of 1 decimal values. You may use the COP1334C.txt file attached to the Unit 5 - Lab Assignment and Submission Folder for testing purposes.
Counse Summary ApP... Choose one of the following options 1. Process Grades Summary report. 2. Quit. Option: 1 Grades Summary Report... Enter name of file: COP1334C.txt COP1334C - Introduction to C++ Programming Prof. Mary Taboada Term: Summer 2022 List of students Arthur Allen Arlette Blum Ilan Crest Cliff Do Christina Francois Matthew Garcia William Irons Saphire Jones Amari Louis Alexandra Macri Sebastian Orwell Marlene Pinheiro Adam Quest Jean Ross Carla Smith Cin Tian Elizabeth Urich Ramon Vargas Ryan Walters 92977687978152848078858576100609510073100 Highest Grade: 100 Lowest Grade: 52 Average Grade: 84.1 Choose one of the following options 1. Process Grades Summary report. 2. Quit. Option: 2 Good Bye...
The Text version of the Input validations for the Course Summary Appprogram.
∇ Grading Rubric