Question: Write the missing method below that will return the sum of a given row in the array. public class Question4{ public static void main(String args[]){
Write the missing method below that will return the sum of a given row in the array.
public class Question4{
public static void main(String args[]){
int arr[ ][ ] = {{10, 45}, {2, 42, 67, 5}, {3, 21}};
System.out.println(getSumofRow(arr, 1)); //prints the sum of row 1
}
private static int getSumOfRow (int [][] myArray, int row) {
} // getSumOfRow
} //main
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
