我需要一点帮助。我希望它通过数组并找到与输入的目的地相同的所有目的地,但这只会打印出 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;
}
}