码迷,mamicode.com
首页 > 其他好文 > 详细

11 找出最大数

时间:2018-10-25 23:46:41      阅读:306      评论:0      收藏:0      [点我收藏+]

标签:print   get   let   color   int   []   span   大数   bsp   

public class FileTest {
    public static void main(String[] args) {
      int[] a= {71,2,1,98,2,8};
      getMax(a);
    }
    public static int getMax(int[] arr) {
        int max=0;
        for(int i=0;i<arr.length;i++) {
            if(arr[i]>max) {
                max=arr[i];
            }
        }
        System.out.println(max);
        return max;
    }
}

 

11 找出最大数

标签:print   get   let   color   int   []   span   大数   bsp   

原文地址:https://www.cnblogs.com/sunnybowen/p/9853568.html

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