-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathass2.cpp
114 lines (56 loc) · 1.03 KB
/
ass2.cpp
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
#include <iostream>
#include <bits/stdc++.h>
#define endl "\n";
using namespace std;
class Matrix{
int arr[3][3];
public:
void getdata();
void display();
friend Matrix Multiplication(Matrix, Matrix);
};
void Matrix::getdata() {
cout << "Enter the elements in 3 X 3 matrix:" << endl;
for(int i = 0; i < 3; i++)
for(int j = 0; j < 3; j++)
cin >> arr[i][j];
}
void Matrix::display() {
for(int i = 0; i < 3; i++)
{
for(int j = 0; j < 3; j++)
{
cout << arr[i][j] << " ";
}
cout << endl;
}
}
Matrix Multiplication(Matrix a, Matrix b)
{
Matrix r;
for(int i = 0; i < 3; i++)
{
for(int j = 0; j < 3; j++)
{
r.arr[i][j] = 0;
for(int k = 0; k < 3; k++)
{
r.arr[i][j] += (a.arr[i][k] * b.arr[k][j]);
}
}
}
return r;
}
int main()
{
Matrix A;
A.getdata();
Matrix B;
B.getdata();
Matrix C;
cout << endl;
cout << "Resultant matrix is:" << endl;
C = Multiplication(A, B);
C.display();
return 0;
}