Question: I'm witing a method using Java that accepts an array of numbers and calucates the average. Can you check if my getAverage method is correct?

I'm witing a method using Java that accepts an array of numbers and calucates the average. Can you check if my getAverage method is correct? How do I call it in the main function by hard coding values into an array? It's not working for me. Let me know!

public static void main(String[] args) { getAverage{1,2,3};

}

public static double getAverage (int[] array){ int sum = 0; for (int i : array ) sum += i; return ((double) sum)/array.length; } }

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!