natalian
2018-08-13 18:04
public static void main(String[] args){
ifss hello =new ifss();
int[] scores ={91,89,23,64,119,52,73};
Arrays.sort(scores);
System.out.println("考试成绩的前三名:");
int a=0;
int b=0;
int c=0;
for(int i=0;i<scores.length;i++){
if(scores[i]>100){
continue;
}else if (a<scores[i]){
a=scores[i];
}
}
for(int q=0;q<scores.length;q++){
if(scores[q]>=a){
continue;
}else if(b<scores[q]){
b=scores[q];
}
}
for(int z=0;z<scores.length;z++){
if(scores[z]>=b){
continue;
}else if(c<scores[z]){
c=scores[z];
}
}
System.out.println(a);
System.out.println(b);
System.out.println(c);
}
}
ifss hello =new ifss(); 换成 HelloWorld hello =new HelloWorld();
你创建的是什么类?方法应该在HelloWorld类中运行,编译器找不到你的“ifss ”类,所以就没用
补充一下:ifss hello =new ifss();这个没用
Java入门第一季(IDEA工具)升级版
1165619 学习 · 17587 问题
相似问题