Question
Problem statement: Design and develop a C++ program for reporting grades for a class. Your program should read in an input file of student grades
Problem statement:
Design and develop a C++ program for reporting grades for a class. Your program should read in an input file of student grades records, and it should produce an output file of student grades records plus a report (output to monitor) of grade distributions. Your program would read in the records from the file one record at a time (sequentially) and output one record at a time to the output file, it update an array of grades. After building the array of grades, then it processes the array to print the grade distributions histogram. The program will also build array each student score in the class and then sort it (use bubble sort) then out put the LOWEST SCORE IN CLASS, HIGHEST SCORE IN CLASS, and NUMBER OF STUDENTS. OUTPUT DESIGN:
______________________________________
A ( 90 100) *************
B ( 80 89) ********************
C ( 70 79) ************************
D ( 60 69) **************
F ( 00 59) ********
LOWEST SCORE IN CLASS : 99
HIGHEST SCORE IN CLASS: 999
NUMBER OF STUDENTS: 999
EXAM01 AVERAGE: 999.99
EXAM02 AVERAGE: 999.99
EXAM03 AVERAGE: 999.99
EXAM04 AVERAGE: 999.99
FINAL AVERAGE: 999.99
LABS AVERAGE: 999.99
QUIZZES AVERAGE: 999.99
INPUT and OUTPUT FILEs REORD FORMAT DESIGN:
______________________________________ \
STUDENT_ID:999
EXAM01:999
EXAM02:999
EXAM03:999
EXAM04:999
FINAL:999
LAB01:999
LAB02:999
LAB04:999
AB05:999
LAB06:999
AVERGE_OF_QUIZ:999.99
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