好的,所以我已经构建了这个程序,它读取成绩的文本文件并显示前两名学生。我应该在成绩中显示任何关系,这是我工作的。但是,如果文本文件中没有平局,则会显示重复的第二高分。我似乎无法让它工作,所以如果没有平局,它会显示两个最高等级,如果有平局则显示两个平局。我真的需要帮助。我已经努力了好几个小时试图做到这一点,我必须在今晚睡觉前提交这个。请有人帮我修复这个代码,这是一个非常大的成绩,我无法弄清楚。
package lab06;
import java.util.*;
import java.io.*;
public class Lab06 {
public static void main(String[] args) throws Exception {
Scanner lab06txt = new Scanner(new File("Lab06.txt")); //declare scanner for lab06.txt
//declare variables
int grade = 0;
int grade2 = 0;
int record = 0;
int Highest = 0;
int Highest2 = 0;
int ACounter = 0;
int BCounter = 0;
int CCounter = 0;
int DCounter = 0;
int FCounter = 0;
double average = 0;
String lastName = "";
String lastNameHigh = "";
String lastNameHigh2 = "";
String firstName = "";
String firstNameHigh = "";
String firstNameHigh2 = "";
//while loop for lab06txt
while (lab06txt.hasNext()){
record ++; //keep track of number of records
lastName = lab06txt.next(); //next string is placed into lastName
firstName = lab06txt.next(); //next string is placed into firstName
grade = lab06txt.nextInt(); //next integer is placed into grade
{
average += grade; //accumulate variable grade into variable average
if (grade >= Highest) //if statement for determining highest grade
{
Highest = grade;
firstNameHigh = firstName; //places firstName of highest grade record into firstNameHigh
lastNameHigh = lastName; //places lastName of highest grade record into lastNameHigh
}
}
{
if ((grade >= 90) && (grade <= 100)) //if statements for variable grade
{
ACounter++; //increases Acounter by 1
}
if ((grade >= 80) && (grade <= 89))
{
BCounter++; //increases Bcounter by 1
}
if ((grade >= 70) && (grade <= 79))
{
CCounter++; //increases Ccounter by 1
}
if ((grade >= 60) && (grade <= 69))
{
DCounter++; //increases Dcounter by 1
}
if ((grade < 60))
{
FCounter++; //increases Fcounter by 1
}
if ((grade < 0) || (grade > 100))
{
//if an incorrect error is found in the loop display the faulty record and end the program
System.out.print("Score is out of bounds in record " + record + ": " + lastName + " "+ firstName + " " + grade + ".\nProgram ending\n");
return;
}
}
}
Scanner SecondHighest = new Scanner(new File("Lab06.txt")); //new scanner for second highest grade
while(SecondHighest.hasNext())
{
lastName = SecondHighest.next();
firstName = SecondHighest.next();
grade2 = SecondHighest.nextInt();
if(grade2 > Highest2 && grade2 < Highest) //if statement to determine second highest grade
{
Highest2 = grade2;
firstNameHigh2 = firstName;
lastNameHigh2 = lastName;
}
if (Highest == grade2){
Highest2 = grade2;
firstNameHigh2 = firstName;
lastNameHigh2 = lastName;
}
}
System.out.println("Total students in class: " +record); //display total students in class
System.out.printf("Class average: %.1f\n", average/record); //display class average
System.out.println("Grade Counters: ");
System.out.println("A's B's C's D's F's");
System.out.printf(ACounter + "%7d %7d %8d %7d\n", BCounter,CCounter,DCounter,FCounter); //display number of A's B's C's D's and F's
System.out.print("\n");
System.out.println("Top Two Students: \n");
System.out.printf(lastNameHigh + " " + firstNameHigh + "%15d \n", Highest); //display highest score and student
System.out.printf(lastNameHigh2 + " " + firstNameHigh2 + "%15d\n", Highest2); //display second highest score and student
}
}
文本文件的内容遵循以下格式:
Jackson Nicholas 96
James Kevin 67
Jansen David 92
Johnson Charlene 69
Jones Nicole 83
Klein Harry 97