about | help | code help+videos | done | prefs |
Given an array of numbers, compute the int average of the first half and the second half, and return whichever is larger. We'll say that the second half begins at index length/2. The array length will be at least 2. To practice decomposition, write a separate helper method int average(int[] nums, int start, int end) { which computes the average of the elements between indexes start..end. Call your helper method twice to implement numAverage(). Write your helper method after your numAverage() method in the JavaBat text area. Normally you would compute averages with doubles, but here we use ints so the expected results are exact. numAverage([2, 2, 4, 4]) → 4 numAverage([3, 4, 5, 1, 2, 3]) → 4 numAverage([5, 6]) → 6 ...Save, Compile, Run (ctrl-enter) |
Progress graphs:
Your progress graph for this problem
Random user progress graph for this problem
Random Epic Progress Graph
Difficulty: 10 Post-solution available
Copyright Nick Parlante 2017 - privacy