我需要一點幫助。我希望它通過數組並找到與輸入的目的地相同的所有目的地,但這隻能找到打印出來的1.任何建議? 謝謝。關於我的代碼與陣列
for (int x = 0; x<40;x++){
String flight;
Scanner input = new Scanner (System.in);
System.out.println("Enter Flight destination to find: ") ;
flight = input.next();
if (plane[x].destination.equals(flight)){
System.out.println("Found destination! " + "\t" + "at array " + x);
System.out.println(plane[x].flightid + "\t" + plane[x].origin + "\t" + plane[x].destination);
break;
}
}
你想從整個列表中找到一個目的地嗎? –