请问报错 错在哪方面? java:19: error: ';' expected
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.sortMethod(scores);
}
//定义方法完成成绩排序并输出前三名的功能
public void sortMethod (int []scores){
Arrays.sort(scores);
int num=0;
for (int i=0;i--){
if(scores100){
continue;
}
j++;
if(num>3){
break;
}
System.out.println(scores);
}
}
} |
免责声明:本内容仅代表回答会员见解不代表天盟观点,请谨慎对待。
版权声明:作者保留权利,不代表天盟立场。
|
|
|
|
错误太低级,for循环写错了,没有这样的写法,int i只能直接赋值,而不是个等式。望采纳。 |
|
|
|
|