private static int findMax(int []x){ int max=x[0]; for(int i=1;imax) max=x[i]; return max; }