莱昂纳多666
2018-11-20 00:05
import java.util.Arrays;
public class HelloWorld {
//完成 main 方法
public static void main(String[] args) {
HelloWorld hello=new HelloWorld();
System.out.println("考试成绩前三名为:");
int []scores={89,-23,64,91,119,52,73};
hello.showTop3(scores);
}
//定义方法完成成绩排序并输出前三名的功能
public void showTop3(int [] scores){
Array.sort(scores);
int num= 0;
for(int i=scores.length-1;i>=0;i--){
if (chengji[i]<0||chengji[i]>100)
{
continue;
}
num++;
if (num>3){
break;
}
System.out.println(scores[i]);
}
}
}
}
Array.sort(scores); 应为Arrays.sort(scores);
if (chengji[i]<0||chengji[i]>100) 应为 if (scores[i]<0||scores[i]>100)
运行起来 显示 HelloWorld.java:43: error: class, interface, or enum expected } ^ 1 error
Java入门第一季(IDEA工具)升级版
1165172 学习 · 17581 问题
相似问题