qq_慕运维7174717
2019-09-14 15:36
import java.ntil.Arrays;
public class HelloWorld {
//完成 main 方法
public static void main(String[] args) {
int scores[] = {89,-23,64,91,119,52,73};
System.out.println("前三名的成绩是:");
HelloWorld hello = new helloWorld();
hello.three(socres);
}
//定义方法完成成绩排序并输出前三名的功能
public void three (int []socres){
Arrays.sort(scores);
int first = 0;
for(int i = socres.length - 1 ; i >= 0&&first<=3;i--)
{
if (scores[i]<0||socres[i]>100)
continue;
first++;
System.out.println(scores[i]);
}
}
}
import java.ntil.Arrays;//ntil 改为 util
HelloWorld hello = new helloWorld();//helloWorld()改为HelloWorld()
scores 这个数组名 有好几个拼错了
first应该小于3吧。。。?
Java入门第一季(IDEA工具)升级版
1165172 学习 · 17581 问题
相似问题