这段代码哪里有问题 为何不能输出值呢??
public class HelloWorld{
public static void main(String[] args){
int[] scores={25,68,469,78,68,363,486,3,433};
System.out.println("数组中的最大值为:");
HelloWorld hello=new HelloWorld();
int big=hello.max(scores);
}
public int max(int[] scores){
int m=0;
for(int i=0;i<scores.length;i++){
if(m<scores[i]){
m=scores[i];
}
}
return m;
}
}