查找数组中最小值和最大值
程序员文章站
2022-05-12 10:37:25
...
public static void main(String[] args) {
arr = new int[]{10,2,3,-1,109,6,7,0,9,99};
//查找数组中元素的最大值和最小值
//定义最小值下标
int minIndex = 0;
//定义最大值下标
int maxIndex = 0;
for (int i = 0; i < arr.length; i++) {
if(arr[i] < arr[minIndex]) {
minIndex = i;
}
if(arr[i] > arr[maxIndex]) {
maxIndex = i;
}
}
System.out.println("最小值" + arr[minIndex]);
System.out.println("最大值" + arr[maxIndex]);
}
下一篇: 寻找数组中的最大值和次大值
推荐阅读