package one;
import java.util.Arrays;
public class one {
//完成 main 方法
public static void main(String[] args) {
one hello=new one();
int[] scores={89 , -23 , 64 , 91 , 119 , 52 , 73};
int[] three=hello.change(scores); //wrong
System.out.println(three);
}
//定义方法完成成绩排序并输出前三名的功能
public int change(int[] scores){
Arrays.sort(scores);
int[] one=new int[3];
for(int i = 0 ; i < 3 ; i++){
if(scores[i] > 0 && scores[i] < 100){
int m=0;
one[m]=scores[i];
m++;
}
return one; //wrong
}
}
}
慕莱坞9220042
相关分类