Question
java Write a program which: Write a program that reads students names followed by their test scores. The program should output each students name followed
java
Write a program which: Write a program that reads students names followed by their test scores. 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.
Student data should be stored in an instance of class variable of type studentClass, which has four components: StudentFName, 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 elements of type studentClass.
SPECIFIC REQUIREMENTS
Your program must contain at least the following methods:
A method to read the students data into the array A method to assign the relevant grade to each student A method to find the highest test score A method 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; you 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 as follow: chapter9SampleOutput.png
Other than declaring variables and opening the input and output files, the function main() should only be a collection of function calls. Comment your code and use meaningful or mnemonic variable names. You must use the Data.txtPreview the documentView in a new window file provided; failure to use this file and not adhere to the requirements will severely affect your grade.
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