Question: Need help programming the sum of each row in the method and printing it out. So far here is what i have. Can't change the
Need help programming the sum of each row in the method and printing it out. So far here is what i have.
Can't change the method parameters of sumRow. Only need to program the inside of the sumRow parameter.

8.2.7: Sum Rows in a 2D Array SAVE SUBMIT + CONTINUE RUN CODE TEST CASES ASSIGNMENT DOCS GRADE public class Sum 5 points Status: Not Submitted public static void main(String[] args) Write the method 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) sumRow( array); 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 static int sumRow(int[][] array, int row) int row = array.length; int cols = array[@].length; for(int i = 0; i
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
