Java Given a 2 dimensional array, write a method to return the average of each row. The result must be returned as a one dimensional array. The array may be ragged. For example: int[][] my2DArray = { {2,5,5}, {2,6,8,4}, {6,5,2,3} } The result should be: int[] myArrayAverage = { 4, //Average of {2,5,5} 5, //Average of {2,6,8,4} 4 //Average of {6,5,2,3} } Note: You only need to write down the code inside the myMethod() code block public class CST1201Test3 { public static void main(String[] args) { int[][] my2DArray = { {2,5,5}, {2,6,8,4}, {6,5,2,3} }; int[] myArrayAverage = myMethod(my2DArray)); } static int[] myMethod(int[][] numbers) { // your answer } }
Java
Given a 2 dimensional array, write a method to return the average of each row.
The result must be returned as a one dimensional array. The array may be ragged.
For example:
int[][] my2DArray = {
{2,5,5},
{2,6,8,4},
{6,5,2,3}
}
The result should be:
int[] myArrayAverage = {
4, //Average of {2,5,5}
5, //Average of {2,6,8,4}
4 //Average of {6,5,2,3}
}
Note: You only need to write down the code inside the myMethod() code block
public class CST1201Test3
{
public static void main(String[] args)
{
int[][] my2DArray = {
{2,5,5},
{2,6,8,4},
{6,5,2,3}
};
int[] myArrayAverage = myMethod(my2DArray));
}
static int[] myMethod(int[][] numbers)
{
// your answer
}
}
![](/static/compass_v2/shared-icons/check-mark.png)
Trending now
This is a popular solution!
Step by step
Solved in 3 steps with 3 images
![Blurred answer](/static/compass_v2/solution-images/blurred-answer.jpg)
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
![C How to Program (8th Edition)](https://www.bartleby.com/isbn_cover_images/9780133976892/9780133976892_smallCoverImage.gif)
![Database Systems: Design, Implementation, & Manag…](https://www.bartleby.com/isbn_cover_images/9781337627900/9781337627900_smallCoverImage.gif)
![Programmable Logic Controllers](https://www.bartleby.com/isbn_cover_images/9780073373843/9780073373843_smallCoverImage.gif)