慕仙1776787
2016-03-30 23:58
写了半天,求教一下,谢谢
返回值一次只能返回一条,所以要么你重复调用方法3次,输出三次,要么你把前3名的成绩转成String型返回
import java.util.Arrays;
public class HelloWorld {
//完成 main 方法
public static void main(String[] args) {
HelloWorld hello=new HelloWorld();
int[] scores={89,-23,64,91,119,52,73};
int[] topThree=hello.getScores(scores);
System.out.println("考试成绩的前三名为:");
for(int top:topThree)
System.out.println(top);
}
//定义方法完成成绩排序并输出前三名的功能
public int[] getScores(int[] scores){
Arrays.sort(scores);
int[] newScores=new int[3];
for(int i=scores.length-1,j=0; i>=0&&j<=2; i--){
if(scores[i]<0||scores[i]>100){
continue;
}
newScores[j]=scores[i];
j++;
}
return newScores;
}
}
Java入门第一季(IDEA工具)升级版
1165172 学习 · 17581 问题
相似问题