double fun(int a[],int n){ int b = 0; for (int i = 0; i < n; i++) if (b < a[i]) // 你的写法 a[i+1] 会越界的 b = a[i]; return b;}