以下是使用 Java 编写的示例代码,用于查找给定数组中的最大值:
public class Main { public static void main(String[] args) { int[] arr = {16, 20, 4, 78, 56, 33}; int maxVal = arr[0]; // 假设数组中的第一个元素为最大值 // 逐个比较数组中的元素,更新最大值 for (int i = 1; i < arr.length; i++) { if (arr[i] > maxVal) { maxVal = arr[i]; } } System.out.println("数组中的最大值为: " + maxVal); } }
运行此代码将输出:
数组中的最大值为: 78
原文链接:codingdict.net