码迷,mamicode.com
首页 > 编程语言 > 详细

(二十二)数组的最大值和最小值

时间:2018-07-27 10:10:51      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:string   out   最大   system   highlight   get   str   sha   ret   

class Demo4
{
    public static void main(String[] args) {
        int[] a = new int[]{12,14,16,20,30};
        /*
        int max = a[0];
        for(int i = 0;i<a.length;i++) {
            if(a[i] > max){
                max = a[i];
            }
        }
        System.out.println(max);
        */
        int max = getMax(a);
        System.out.println(max);
    }
    //求整形数组中最大值的功能
    public static int getMax(int[] arr) {
        int max = arr[0];
        for(int i =0;i<arr.length;i++) {
            if(arr[i] > max) {
                max = arr[i];
            }
        }
        return max;
    }
}

  

(二十二)数组的最大值和最小值

标签:string   out   最大   system   highlight   get   str   sha   ret   

原文地址:https://www.cnblogs.com/bgwhite/p/9375492.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!