Answers for "sum of boundary elements of matrix in java"

0

sum of boundary elements of matrix in java

import java.util.*;
public class Main
{
	public static void main(String[] args)
	{
		Scanner sc = new Scanner(System.in);
		int m, n, sum = 0, row1 = 0, col_n = 0, diag = 0;
		System.out.print(“\nEnter the order of the matrix : “);
		m = sc.nextInt();
		n = sc.nextInt();
		int i, j;
		int[][] mat = new int[m][n];
		System.out.print(“\nInput the matrix elements \n”);
		for(i = 0; i < m; i++)
			{
				for(j = 0; j < n; j++)
				mat[i][j] = sc.nextInt();
			}
		System.out.print(“\nBoundary Matrix\n”);
		for(i = 0; i < m; i++)
			{
				for(j = 0; j < n; j++)
					{
						if (i == 0 || j == 0 || i == n – 1 || j == n – 1)
							{
								System.out.print(mat[i][j] + ” “);
								sum = sum + mat[i][j];
							}
						else
								System.out.print(” “);
					}
				System.out.print(“\n”);
			}
		System.out.print(“\nSum of boundary is ” + sum);
	}
}
Posted by: Guest on May-02-2021

Code answers related to "sum of boundary elements of matrix in java"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language