我是編程新手我需要編寫一個代碼來查找Person Array中最老的人。請幫忙。該程序已編譯但未執行。它給了我只有陣列的大小,但不是最老的人。我將不勝感激任何幫助。 我的代碼是波紋管:如何在Java中使用Person數組中的循環尋找最老的人
import java.util.ArrayList;
public class PersonCollection {
public static void main(String[] args) {
ArrayList<Person> aList = new ArrayList<Person>();
// Create 5 new Person objects and output their data
Person person1 = new Person("Diana", "Rockman", 38, 'F', "603-28-5324");
Person person2 = new Person("Arthur","Montgamery", 49, 'M',"402-23-5463");
Person person3 = new Person("Kim", "Balcer", 35, 'F',"607-34-5463");
Person person4 = new Person("Ghaffar","Kucher", 36, 'M',"537-52-6324");
Person person5 = new Person("Zach","Boot", 19, 'M', "732-65-7364");
aList.add(person1);
aList.add(person2);
aList.add(person3);
aList.add(person4);
aList.add(person5);
System.out.println("The size of the list is:" + aList.size());
}
public static void oldestPerson(String[] names, int[] ages)
{
int index = 0;
int oldest = ages[0];
for (int i=0; i < ages.length; i++)
{
if(ages[i] > oldest)
{index = i;
oldest = ages[i];
}
System.out.println("Person" + names[index] + "is the oldest:" + ages [index]);
}
}
}
你永遠不調用方法'oldestPerson' –
您可以發佈「人」類的源代碼? – McLovin
你能告訴我們人員嗎? – Teo