提示:您可在线编辑运行本教程的实例 - 运行实例,去试试!
函数中的数组参数:数组的最小元素
public class Main { static int minArray(int[] t) {//来自 n o w j a v a . c o m int m = t[0]; for (int i = 1; i < t.length; ++i) if (t[i] < m) m = t[i]; return m; } public static void main(String[] args) { int[] v = new int[23]; for (int i = 0; i < 23; i++) v[i] = (int) (Math.random() * 100);