How to manipulate arrays. Find the average. Beginner Java
问题 I have a homework assignment and I was wondering if anyone could help me as I am new to Java and programming and am stuck on a question. The question is: The first method finds the average of the elements of an integer array: public double average(int[] data) That is, given an integer array, data, calculate the average of its elements are return the average value. For example, the average of {1, 3, 2, 5, 8} is 3.8. Here is what I have done so far: public double average(int[] data) { int sum =