Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Student Grade Calculator Implement in C++ a Student Letter Grade Calculator program that does the following: Gets the input about each of the Students (first
Student Grade Calculator
Implement in C++ a Student Letter Grade Calculator program that does the following:
- Gets the input about each of the Students (first name, last name, testscore1, testscore2, testscore3, testscore4) from an input file. The attached studentScores.txt file is an example input file. Your program shoud work with any other similar format input data! Assume that there is information about 6 students in the input file.
- Stores the input in arrays.
- Calculates the total, average scores, and letter grades and stores them in arrays.
-
- The letter grade is based on the following grade scale:
Average Score Letter Grade
90 100 A
80 <90 B
70 <80 C
60 <70 D
<60 F
- Writes the output (first name, last name, testscore1, testscore2, testscore3, testscore4, total, average, letter grade) to a file and saves it as studentLetterGrades.txt
Note:
- Your program must use all the necessary nested loops, and conditional structures.
- Make sure you comment appropriately.
- Make sure your program is indented properly.
- use arrays as needed.
- Please make sure you submit the source code file (.cpp).
- Use a multi-line comment banner at the top of your program. This banner should have the following:
- Your first name and last name
- Course number and section number
- Semester and year
- Assignment name
- Description (in your own words) of what the program is all about
- Describe what the Input to your program is
- Describe what the Output from your program is
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