Respuesta :
To write a class GradeStudents with a "main" method only that will read, using Scanner, a filename from the user (assumed to exist and in the correct format) check the code given below.
What is a filename?
The title of a file and its extension are included in its filename. An entire file name is, for instance, "readme.txt."
Additionally, only the first part of a file may be described in the file name. A file with the name "readme" and the file name extension ".txt" is an example.
↓↓//CODE//↓↓
package code;
public class TestResults
{
private StudentAnswerSheet[] students;
private int count = 0;
private static final int DEFAULT_SIZE = 10;
public TestResults(int size)
{
if (size > 0) {
students = new StudentAnswerSheet[size];
}
else {
students = new StudentAnswerSheet[DEFAULT_SIZE];
}
count = 0;
}
public boolean addStudentAnswerSheet(StudentAnswerSheet x) {
boolean inserted = false;
if (x != null && count < students.length) {
students[count] = x;
count++;
inserted = true;
}
return inserted;
}
public String highestScoringStudent(char[] answerKey) {
double maxScore = Double.MIN_VALUE;
double tempScore;
// Finding maximum score
for (StudentAnswerSheet sheet : students) {
tempScore = sheet.getScore(answerKey);
if (tempScore > maxScore) {
maxScore = tempScore;
}
}
// building highest achievers list
StringBuilder res = new StringBuilder();
for (StudentAnswerSheet sheet : students) {
if (sheet.getScore(answerKey) == maxScore) {
res.append(sheet.getName()).append(" ");
}
}
// returning list string
return res.toString().strip();
}
}
Learn more about filename
https://brainly.com/question/28578338
#SPJ4