Question
Write a program that reads students names file followed by their test scores located in a txt file (Make up a name for the file,
Write a program that reads students names file followed by their test scores located in a txt file (Make up a name for the file, like Student_Names.txt). The program should output each students name followed by the test scores and the relevant grade. It should also find and print the highest test score and the name of the students having the highest test score. This program must be compatible with Microsoft Visual Studio as that is the only program we use for coding in this class. Please include minimal comments showing what lines of code are for.
Student data should be stored in a struct variable of type studentType, which has four components: studentFName and studentLName of type string, testScore of type int (testScore is between 0 and 100), and grade of type char. Suppose that the class has 20 students. Use an array of 20 components of type studentType.
Your program must contain at least the following functions: A function to read the students data into the array. A function to assign the relevant grade to each student. A function to find the highest test score. A function to print the names of the students having the highest test score. Your program must output each students name in this form: last name followed by a comma, followed by a space, followed by the first name; the name must be left justified. Moreover, other than declaring the variables and opening the input and output files, the function main should only be a collection of function calls. This program must be compatible with Microsoft Visual Studio as that is the only program we use for coding in this class. Please include minimal comments showing what lines of code are for.
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