照著打的為啥錯了
package com.imooc;
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.top3(scores);
?????? ?
?????? ?
??? }
?? ?
??? //定義方法完成成績排序并輸出前三名的功能
??? public void top3(int[] socres){
??????? Arrays.sort(scores);
??????? int num = 0;
??????? for(int i = scores.length-1; i >= 0; i--){
??????????? if(socres[i]<0||socres[i]>100){
??????????????? continue;
??????????? }
??????????? num++;
??????????? if(num>3){
??????????????? break;
??????????? }
????????????? System.out.println(socres[i]);
??????? }
??? }
}
2019-07-15
top3后面參數(shù)名寫錯了?socres?
2019-07-27
tomp方法的參數(shù)scores你寫成啦socres