Answered step by step
Verified Expert Solution
Question
1 Approved Answer
C++ on the beginner level and with comment lines explaining each section. It also has to be implemented with structs and files. CS215 Programming Assignment
C++ on the beginner level and with comment lines explaining each section. It also has to be implemented with structs and files.
CS215 Programming Assignment - Records and Files Submission: 1. Submit your code as one file of type *.cpp (you do not have to submit the input and output files) 2. Submit it on the Blackboard within the due date and time (Submission via email will NOT be considered!) 3. Assignment ID: CS215 PA Records and Files The Program Details Implement a program in C++ that does the following: 1. Requests and Reads in the input from the keyboard, of at least 5 student names with at least 3 test scores (each a value between 0 and 100 ) for each of the students. 2. Creates a file and Saves those inputs in that file (see the example input file on the right). 3. Then opens that input file, reads that data back into the program and processes it to calculate the grade point average (out of 100 ). 4. Writes the output back to another file (see the example output file below). Make sure the output format is neat andd follows a column format with proper column headings NOTE: - Write comments - Maintain proper indentation - Use Modularity (write necessary sub-functions, if any) - Make sure the program is debugged and tested to see that it is working as per the specifications above - implement with structs and files - Do not use any built-in data structures from the C+ + standard library (for example, vector 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