天天看點

求一組數的最大值

求一組數的最大值

public class HelloWorld{
    public static void main(String[] args){
        int arr[] = {12, 45,98,73,60};
        int max = arr[0];//一般都事将數組中的第一個數[0]當成初始值去與其他資料比較
        for (int x=1; x<arr.length; x++){
            if(arr[x] > max){
                max = arr[x];
            }
        }
        System.out.println("max:"+max);
    }
}