public class Max_recursive { public static int max(parameters) //this method will use two recursive calls // to find the maximum of a list of integers { } public static void main(String[] args) { final int zero = 0; int maxInArray; int[] littleList={2,3,8,6}; maxInArray = max(littleList, zero, (littleList.length-1)); System.out.print("The maximum is in the little list is "); System.out.println(maxInArray); // get this working with the little list then remove the comment to test it with the big list /* int[] bigList={2,13,4,22,8,3,10,5,12,15}; maxInArray = max(bigList, zero, (bigList.length-1)); System.out.print("The maximum is in the big list is "); System.out.println(maxInArray); */ } }