求出数组中的最值

package cn.itcast.day05.demo03;

public class Demo05ArrayMax {
    public static void main(String[] args) {
        int[] array = {5,15,30,20,10000};

        int max = array[0];
        for (int i = 1; i < array.length; i++) {
            //如果当前元素比max大,则换人
            if (array[i]>max){
                max = array[i];
            }
        }
        //谁最后最厉害,就能在max当中留下谁的战斗力
        System.out.println("最大值:"+max);
    }
}

你可能感兴趣的:(蓝桥杯,职场和发展)