java数组查询最大值
时间: 2023-12-05 20:51:10 浏览: 89
java求最大值
可以使用循环遍历数组的方式来查询最大值,具体代码如下:
```java
public class Test {
public static void main(String[] args) {
int[] arr = {1, 3, 5, 2, 4};
int max = arr[0];
for (int i = 1; i < arr.length; i++) {
if (arr[i] > max) {
max = arr[i];
}
}
System.out.println("数组中的最大值为:" + max);
}
}
```
首先定义一个变量 `max` 来保存最大值,初始值为数组的第一个元素。之后循环遍历数组,依次比较每个元素和 `max` 的大小,如果当前元素大于 `max`,则将 `max` 更新为当前元素。最后输出 `max` 即可。
阅读全文