为什么我的运行不了呢
public class test {
//完成 main 方法
public static void main(String[] args) {
// 创建对象,对象名为hello
test hello = new test();
// 调用方法并将返回值保存在变量中
int maxScore= hello.getMaxAge();
// 输出最大年龄
System.out.println("最大年龄为:" + maxScore);
}
public int getMaxAge() {
//方法中将学生年龄保存在数组 ages 中,数组元素依次为 18 ,23 ,21 ,19 ,25 ,29 ,17
int[] ages={18,23,21,19,25,17};
int max=ages[0];
for(int i=0; i<ages.length; i++){
if(ages[i]>max){
max=ages[i];
}
}
//返回值
return max;
}
}