C++ program for addition of two matrices
kw.cpp
Output
kodingwindow@kw:~$ g++ kw.cpp
kodingwindow@kw:~$ ./a.out ——————————————————————————————————————————— Program to print addition of two matrices ——————————————————————————————————————————— Enter the number of row(s) 3 Enter the number of column(s) 3 Enter elements for matrix A [1][1]=1 [1][2]=2 [1][3]=3 [2][1]=4 [2][2]=5 [2][3]=6 [3][1]=7 [3][2]=8 [3][3]=9 Enter elements for matrix B [1][1]=9 [1][2]=8 [1][3]=7 [2][1]=6 [2][2]=5 [2][3]=4 [3][1]=3 [3][2]=2 [3][3]=1 Matrix A is 1 2 3 4 5 6 7 8 9 Matrix B is 9 8 7 6 5 4 3 2 1 The addition of matrix A and matrix B is 10 10 10 10 10 10 10 10 10 ——————————————————————————————————————————— kodingwindow@kw:~$
Advertisement