欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

java求一个数组的最大值和最小值

程序员文章站 2024-03-15 22:04:54
...
public class Test {

    public static void getMaxAndMinValue(int[] arr) {
    	//将数组的第一个数分别赋值给 max 和 min
        int max = arr[0];
        int min = arr[0];
        
        for (int i = 0; i < arr.length; i++) {
        	//当前遍历的数如果比 max 大,就将该数赋值给 max
            if (arr[i] > max) {
                max = arr[i];
            }

			//当前遍历的数如果比 min 小,就将该数赋值给 min
            if (arr[i] < min) {
                min = arr[i];
            }
        }
        
        System.out.println("数组的最大值是:" + max);
        System.out.println("数组的最小值是:" + min);
    }

    public static void main(String[] args) {

        int[] arr = {5, 8, 1, 5, 9, 7};
        getMaxAndMinValue(arr);
    }
}