Home » Java Program to find the sum of each row and each column of a matrix

Java Program to find the sum of each row and each column of a matrix

by Online Tutorials Library

Java Program to find the sum of each row and each column of a matrix

In this program, we need to calculate the sum of elements in each row and each column of the given matrix.

Java Program to find the sum of each row and each column of a matrix

Above diagram shows the sum of elements of each row and each column of a matrix.

Algorithm

  • STEP 1: START
  • STEP 2: DEFINE rows, cols, sumRow, sumCol
  • STEP 3: INITIALIZE matrix a[][] ={{1, 2, 3},{4, 5, 6}, {7, 8, 9}}
  • STEP 4: rows = a.length
  • STEP 5: cols = a[0].length
  • STEP 6: REPEAT STEP 7 to STEP 10 UNTIL i<rows
            // for(i=0; i<rows; i++)
  • STEP 7: SET sumRow =0
  • STEP 8: REPEAT STEP 9 UNTIL j<cols
  • STEP 9: sumRow = sumRow + a[i][j]
  • STEP 10: PRINT i+1, sumRow
  • STEP 11: REPEAT STEP 12 to STEP 15 UNTIL i<cols
            //for(i=0; i<cols; i++)
  • STEP 12: SET sumCol =0
  • STEP 13: REPEAT STEP 14 UNTIL j<rows
            //for(j=0; j<rows; j++)
  • STEP 14: sumCol =sumCol + a[j][i]
  • STEP 15: PRINT i+1, sumCol
  • STEP 16: END

Program

Output:

Sum of 1 row: 6  Sum of 2 row: 15  Sum of 3 row: 24  Sum of 1 column: 12  Sum of 2 column: 15  Sum of 3 column: 18  
Next TopicJava Programs

You may also like