好吧,我已經構建了這個程序,讀取一個文本文件的檔次並顯示前兩名學生。我應該顯示任何等級的關係,我工作。但是,如果文本文件中沒有關係,則會顯示重複的第二高分數。我似乎無法做到這一點,所以如果沒有聯繫,它會顯示兩個最高的成績,並且如果有關係顯示兩個聯繫。我真的需要幫助。我一直在努力嘗試這麼做,我必須在今晚睡覺之前提交。請有人幫我解決這個問題,這是一個非常大的成績,我無法弄清楚。if語句和項目循環
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
如果它是一個等級,你不能弄清楚,那麼你不應該被分級好,因爲你知道嗎? – tyler
^但我想弄明白,我想知道什麼是錯的。一整天都讓我發瘋。即使不是年級,這會打擾我,我已經花了很多年試圖修復它,沒有結果。這就是我來這裏的原因。 – DeathWish
這是什麼靜態塊在那裏?你知道,那個分配'grade'後的那個? – Makoto