慕雪芸茗
2016-03-12 21:17
import java.util.Arrays;
public class HelloWorld {
//完成 main 方法
public static void main(String[] args) {
int[] scores = {89, -23, 64, 91, 119, 52, 73};
HelloWorld hello = new HelloWorld();
int[] scoreRank = hello.rank(scores);
System.out.println(Arrays.toString(scoreRank));
}
//定义方法完成成绩排序并输出前三名的功能
public int[] rank(int[] scores) {
int[] scoreRank = new int[3];
Arrays.sort(scores);
int j = 0;
for (int i = scores.length - 1; i <= scores.lenght - 3; i--) {
scoreRank[j] = scores[i];
j++;
}
return scoreRank;
} //用来求数组scores中最大的三个数。for循环有点问题,可我看不出来,帮我看看!
public int[] rank(int[] scores) { int[] scoreRank = new int[3]; Arrays.sort(scores); int j = 0; for (int i = scores.length - 1; i <= scores.lenght - 3; i--) { scoreRank[j] = scores[i]; j++; } return scoreRank; } //用来求数组scores中最大的三个数。for循环有点问题,可我看不出来,帮我看看!
你循环里的
第一:scores.lenght--->出问题了
第二:结果出来都是零
你自己还是看看文档吧
Java入门第一季(IDEA工具)升级版
1165172 学习 · 17581 问题
相似问题