-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2D or double dimension array.java
68 lines (57 loc) · 1.25 KB
/
2D or double dimension array.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import java.util.*;
public class Main
{
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
//get row and col size from user
System.out.println("Enter number of rows/row size ");
int row=sc.nextInt();
System.out.println("Enter number of columns/column size ");
int col=sc.nextInt();
//declare Array
int arr[][]=new int[row][col];
//get array elements
System.out.println("Enter array elements: ");
for(int i=0;i<row;i++){
for(int j=0;j<col;j++){
arr[i][j]=sc.nextInt();
}
}
//print array elements
System.out.println("The array elements are: ");
for(int i=0;i<row;i++){
for(int j=0;j<col;j++){
System.out.print(" "+arr[i][j] );
}
System.out.println();
}
//print sum
for(int i=0;i<row;i++){
int sum1=0;
for(int j=0;j<col;j++){
sum+=arr[i][j];
sum1+=arr[i][j];
}
System.out.println("The sum of "+i+"th row is "+sum1);
}
System.out.println("Total Sum is "+sum);
}
}
output:
Enter number of rows/row size
2
Enter number of columns/column size
3
Enter array elements:
1
2
3
4
5
6
The array elements are:
1 2 3
4 5 6
The sum of 0th row is 6
The sum of 1th row is 15
Sum is 21