数组获取最值(获取数组中的最大值最小值)
package com.igeek_06;
/**
* @ClassName: ArrayTest2
* @Description: 数组获取最值(获取数组中的最大值最小值)
* @date 2017年10月12日 下午6:14:30
* Company www.igeekhome.com
*
* 需求:数组获取最值(获取数组中的最大值最小值)
*/
public class ArrayTest2 {
public static void main(String[] args) {
//定义数组
int[] arr = {12,98,45,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);
}
}