11 找出最大数

Posted sunnybowen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了11 找出最大数相关的知识,希望对你有一定的参考价值。

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 找出最大数的主要内容,如果未能解决你的问题,请参考以下文章