0% found this document useful (0 votes)
23 views2 pages

Program To Display The Array Elements Along With The Sum of Rows and Columns

Uploaded by

shuklanikita568
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
23 views2 pages

Program To Display The Array Elements Along With The Sum of Rows and Columns

Uploaded by

shuklanikita568
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

// PROGRAM TO DISPLAY THE ARRAY ELEMENTS ALONG WITH THE SUM OF ROWS AND COLUMNS

import java.util.*;
class row_col_add
{
public static void main(String args[])
{
Scanner in = new Scanner(System.in);
System.out.print("Enter number of rows (n): ");
int n = in.nextInt();
System.out.print("Enter number of columns (m): ");
int m = in.nextInt();
int arr[][] = new int[n][m];
System.out.println("Enter array elements");
for (int i = 0; i < n - 1; i++)
{
System.out.println("Enter Row "+ (i+1) + " :");
for (int j = 0; j < m - 1; j++)
{
arr[i][j] = in.nextInt();
}
}
System.out.println("Input Array:");
for (int i = 0; i < n; i++)
{
for (int j = 0; j < m; j++)
{
System.out.print(arr[i][j] + "\t");
}
System.out.println();
}
//Row-wise & Column-wise Sum
for (int i = 0; i < n - 1; i++)
{
int rSum = 0, cSum = 0;
for (int j = 0; j < m - 1; j++)
{
rSum += arr[i][j];
cSum += arr[j][i];
}
arr[i][m - 1] = rSum;
arr[n - 1][i] = cSum;
}
System.out.println("Array with Sum:");
for (int i = 0; i < n; i++)
{
for (int j = 0; j < m; j++)
{
System.out.print(arr[i][j] + "\t");
}
System.out.println();
}
}
}
/*
OUTPUT:
Enter number of rows (n): 3
Enter number of columns (m): 3
Enter array elements
Enter Row 1 :
1
23
Enter Row 2 :
23
12
Input Array:
1 23 0
23 12 0
0 0 0
Array with Sum:
1 23 24
23 12 35
24 35 0

*/

You might also like