获取数组的最值:
public class ArrayTest {
public static void main(String[] args){//定义数组
int[] arr= {11,22,33,44,55};
//获取数组的最值
//方法调用
int max = getMax(arr);
System.out.println("max:"+max);
int min = getMin(arr);
System.out.println("min:"+min);
}
public static int getMax(int[] arr){
//从数组中第一个元素作为参照
int max = arr[0];
//遍历数组的其他元素
for (int x=1;x<arr.length;x++){
//依次对照,比较
if (arr[x]>max){
max=arr[x];
}
}
//返回最大值
return max;
}
public static int getMin(int[] arr){
int min =arr[0];
for (int x=1;x<arr.length;x++){
if (arr[x]<min){
min = arr[x];
}
}
return min;
}
}
运行结果: