-
Notifications
You must be signed in to change notification settings - Fork 147
/
Copy pathq2_2.cpp
149 lines (140 loc) · 3.47 KB
/
q2_2.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
// Create a class called 'Matrix' containing constructor that initializes the number of rows and the number of columns of a new Matrix object. The Matrix class has the following information:
// 1 - number of rows of matrix
// 2 - number of columns of matrix
// 3 - elements of matrix (You can use 2D vector)
// The Matrix class has functions for each of the following:
// 1 - get the number of rows
// 2 - get the number of columns
// 3 - set the elements of the matrix at a given position (i,j)
// 4 - adding two matrices.
// 5 - multiplying the two matrices
// You can assume that the dimensions are correct for the multiplication and addition.
#include <iostream>
#include <string>
using namespace std;
class Matrix
{
public:
int rows;
int columns;
Matrix(int n, int m)
{
rows = n;
columns = m;
}
int getRows()
{
return rows;
}
int getColumns()
{
return columns;
}
int setElements(Matrix m1,Matrix m2)
{
int n;
int m;
cout << "Enter rows: ";
cin >> n;
cout << "Enter columns: ";
cin >> m;
int arr[n][m];
cout << "Enter elements: \n";
for (int i = 0; i < n; i++)
{
for (int j = 0; j < m; j++)
{
cin >> arr[i][j];
}
}
cout << "Elements are: ";
for (int i = 0; i < n; i++)
{
for (int j = 0; j < m; j++)
{
cout << arr[i][j] << endl;
}
}
}
int add(Matrix m1,Matrix m2)
{
int n;
int m;
cout << "Enter rows: ";
cin >> n;
cout << "Enter columns: ";
cin >> m;
int arr1[n][m];
int arr2[n][m];
cout << "Enter the elements of matrix 1: \n";
for (int i = 0; i < n; i++)
{
for (int j = 0; j < m; j++)
{
cin >> arr1[i][j];
}
}
cout << "Enter the elements of matrix 2: \n";
for (int i = 0; i < n; i++)
{
for (int j = 0; j < m; j++)
{
cin >> arr2[i][j];
}
}
cout << "Sum of 2 arrays is: \n";
int sum = 0;
for (int i = 0; i < n; i++)
{
for (int j = 0; j < m; j++)
{
sum = arr1[i][j] + arr2[i][j];
}
}
}
int product(Matrix m1,Matrix m2)
{
int n;
int m;
cout << "Enter rows: ";
cin >> n;
cout << "Enter columns: ";
cin >> m;
int arr1[n][m];
int arr2[n][m];
cout << "Enter the elements of matrix 1: \n";
for (int i = 0; i < n; i++)
{
for (int j = 0; j < m; j++)
{
cin >> arr1[i][j];
}
}
cout << "Enter the elements of matrix 2: \n";
for (int i = 0; i < n; i++)
{
for (int j = 0; j < m; j++)
{
cin >> arr2[i][j];
}
}
cout << "Product of 2 arrays is: \n";
int product = 0;
for (int i = 0; i < n; i++)
{
for (int j = 0; j < m; j++)
{
product = arr1[i][j] * arr2[i][j];
}
}
}
};
int main()
{
Matrix m1(2, 4),m2(3,2);
cout << m1.getRows() << endl;
cout << m1.getColumns() << endl;
cout << m1.add(m1,m2) << endl;
cout << m1.product(m1, m2) << endl;
return 0;
}