int theMax(int a[],int n) { int t; if(n>1) { t=f(a,n-1); return t>a[n-1]?t:a[n-1]; } else return a[0]; }