forked from abantikamondal/Abantikarepo1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAdd_matrix.java
39 lines (34 loc) · 842 Bytes
/
Add_matrix.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
import java.util.*;
class Add_matrix{
public static void main(String args[]){
int n,m;
Scanner sc=new Scanner(System.in);
System.out.println("enter the value of n");
System.out.println("enter the value of m");
n=sc.nextInt();
m=sc.nextInt();
int c[][]=new int[n][m];
int a[][] =new int[n][m];
int b[][] =new int[n][m];
System.out.println("enter the elements:");
for(int i=0;i<n;i++){
for(int j=0;j<m;j++){
a[i][j]=sc.nextInt();
}
}
System.out.println("enter the elements:");
for(int i=0;i<n;i++){
for(int j=0;j<m;j++){
b[i][j]=sc.nextInt();
}
}
System.out.println("the ans is:");
for(int i=0;i<n;i++){
for(int j=0;j<m;j++){
c[i][j]=a[i][j]+b[i][j];
System.out.print(c[i][j]+" ");
}
}
System.out.println();
}
}