Question: Write the method public static int sumRow(int[][] array, int row) that sums row row in the 2D array called array. Then, traverse array to print

Write the method

public static int sumRow(int[][] array, int row)

that sums row row in the 2D array called array.

Then, traverse array to print the sum of each row in the 2D array.

----------------------------------------------------------------------------------------

public class Sum { public static void main(String[] args) { int[][] array = {{32, 4, 14, 65, 23, 6}, {4, 2, 53, 31, 765, 34}, {64235, 23, 522, 124, 42, 64}}; } public static int sumRow(int[][] array, int row) { } }

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!