輸出有效成績的前三名

要求:java

一、 成績已保存在數組 scores 中,數組元素依次爲 89 , -23 , 64 , 91 , 119 , 52 , 73數組

二、 要求經過自定義方法來實現成績排名並輸出操做,將成績數組做爲參數傳入ide

三、 要求判斷成績的有效性( 0—100 ),若是成績無效,則忽略此成績idea

//導入java.util包中的Arrays類
import java.util.Arrays;

public class HelloWorldb {

    //完成 main 方法
    public static void main(String[] args) {
        HelloWorldb hello = new HelloWorldb();
        int[] scores = new int[]{89,-23,64,91,119,52,73};
        System.out.println("成績前三名:");

        //調用idea方法
        hello.idea(scores);
    }

    //定義方法完成成績排序並輸出前三名的功能
    public void idea(int[] nums){

        //升序排列數組元素
        Arrays.sort(nums);

        //將數組降序排列
        int[] array = new int[nums.length];/*建立一個新數組接收降序排列的數組*/
        for (int i = 0; i < nums.length; i++) {
            array[i] = nums[nums.length-1-i];
        }

        int j = 0;/*有效成績個數*/

        //遍歷數組array
        for(int a : array){
            if(a<0 || a>100 ){/*淘汰不符合要求的元素*/
                continue;
            }else{
                //輸出符合要求的元素
                System.out.println(a);
                j++;
                if(j >= 3){
                    break;
                }
            }
        }
    }
}
相關文章
相關標籤/搜索