87.8k views
3 votes
Write a public static method named countGreaterThanAverage that will take an int array as it's only argument. This method will return an int value. When called, and passed an array of int values, this method will compute and return the number of values in the argument array that are greater than the average of all the values in the argument array.

1 Answer

6 votes

Final answer:

To solve this problem, we need to find the average of all the values in the given int array and count the number of values that are greater than the average.

Step-by-step explanation:

The subject of this question is Computers and Technology and the grade level is High School.



To solve this problem, we need to find the average of all the values in the given int array and count the number of values that are greater than the average. We can do this by following these steps:




  1. Initialize a variable sum to 0.

  2. Iterate through the array and add each value to the sum.

  3. Compute the average by dividing the sum by the length of the array.

  4. Initialize a variable count to 0 to keep track of the values greater than the average.

  5. Iterate through the array again and increment the count if the current value is greater than the average.

  6. Return the final value of count.



For example, let's say we have an array [4, 6, 8, 10, 12] as the argument. The average of these values is (4 + 6 + 8 + 10 + 12) / 5 = 8. The count of values greater than 8 is 2 (10 and 12). Therefore, the method will return 2.

Learn more about Counting values greater than the average in an int array

User Reznoir
by
8.0k points