weibo_一叶菩提a一念尘缘_0
2017-11-22 09:50
import java.util.Arrays;
public class HelloWorld {
public static void main(String[] args) {
int[] scores={ 89 , -23 , 64 , 91 , 119 , 52 , 73};
HelloWorld hello =new HelloWorld();
hello.sortScore(scores);
}
//定义方法完成成绩排序并输出前三名的功能
public void sortScore(int[] scores){
Arrays.sort(scores);
System.out.println(Arrays.toString(scores));//输出排序数组
System.out.println("考试成绩的前三名为:");
//num 控制输出的排名前3数
for(int i=scores.length-1,num=1;i>=0;i--){
if(scores[i]<=100&&scores[i]>0&&num<4){
System.out.println(scores[i]);
num++;
}else
continue;
}
}
}
可以成功啊,为什么不行,我把你的代码复制到慕课上的,成功运行了
import java.util.Arrays;
public class test03 {
public static void main(String[] args) {
int[] scores={ 89 , -23 , 64 , 91 , 119 , 52 , 73};
test03 hello =new test03();
hello.sortScore(scores);
}
//定义方法完成成绩排序并输出前三名的功能
public void sortScore(int[] scores){
Arrays.sort(scores);
System.out.println(Arrays.toString(scores));//输出排序数组
System.out.println("考试成绩的前三名为:");
for(int i=scores.length-1,num=1;i>=0;i--){ //num 控制输出的排名前3数
if(scores[i]<=100&&scores[i]>0&&num<4){
System.out.println(scores[i]);
num++;
}else
continue;
}
}
}
Java入门第一季(IDEA工具)升级版
1165646 学习 · 17587 问题
相似问题