慕慕3083393
2015-08-19 17:02
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;
}
}
System.out.println(big);把这行代码加在int big=hello.max(scores);这行代码下面
Java入门第一季(IDEA工具)升级版
1165590 学习 · 17587 问题
相似问题