qq_慕妹6524074
2019-07-28 17:04
import java. util. 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.showTop3(scores);
}
public void showTop3(int[] scores){
Arrays.sort(scores);
int num=0;
for(int i=scores.length - 1; i>=0; i--){
if (scores[i] <0 || scores[i]>100);
continue;
}
num++;
if (num > 3);
break;
}
System.out.println(scores[i]);
//定义方法完成成绩排序并输出前三名的功能
}
}
}
兄弟你if后面怎么那么喜欢用分号
if (scores[i] <0 || scores[i]>100);
if (num > 3);
封号改成左大括号
System.out.println(scores[i]);这句话写在for循环体外面了
Java入门第一季(IDEA工具)升级版
1165172 学习 · 17581 问题
相似问题