Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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}};
}
public static int sumRow(int[][] array, int row)
{
}
}

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions

Question

2. (1 point) Given AABC, tan A b b

Answered: 1 week ago