forked from Rustam-Z/cpp-programming
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSource1.cpp
More file actions
421 lines (410 loc) · 8.65 KB
/
Copy pathSource1.cpp
File metadata and controls
421 lines (410 loc) · 8.65 KB
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
#include <iostream>
#include <string>
using namespace std;
int main();
void read_display()
{
system("cls");
cout << "\t\tREAD AND DISPLAY\n";
cout << "Please input information about 2D array: " << endl;
int row_input, col_input;
cout << "Rows (max 5): ";
cin >> row_input;
cout << "Columns (max 5): ";
cin >> col_input;
int a[5][5];
cout << "Now input elements of Matrix: ";
if (row_input > 0 && row_input <= 5 && col_input > 0 && col_input <= 5)
{
for (int row = 0; row < row_input; row++)
{
for (int col = 0; col < col_input; col++)
{
cin >> a[row][col];
}
}
cout << "Result: \n";
for (int row = 0; row < row_input; row++)
{
for (int col = 0; col < col_input; col++)
{
cout << a[row][col] << " ";
}
cout << endl;
}
cout << endl;
cout << "Do you want to try again? (Yes = 1, No = Any Key)\n";
string respond;
cout << "Your choice: ";
cin >> respond;
if (respond == "1")
{
system("cls");
read_display();
}
else
{
system("cls");
main();
}
}
else
{
system("cls");
cout << "Please input valid numbers from 1 to 5 ! " << endl;
read_display();
}
}
void transpose()
{
system("cls");
cout << "\t\tTRANSPOSE OF MATRIX\n";
int a[5][5], trans[5][5], r, c, i, j;
cout << "Please input information about 2D array: " << endl;
cout << "Rows (max 5): ";
cin >> r;
cout << "Columns (max 5): ";
cin >> c;
// Storing element of matrix entered by user in array
if (r > 0 && r <= 5 && c > 0 && c <= 5)
{
cout << "Enter elements of matrix: " << endl;
for (i = 0; i < r; ++i)
for (j = 0; j < c; ++j)
{
cin >> a[i][j];
}
// Displaying the matrix
cout << "Entered Matrix: " << endl;
for (i = 0; i < r; ++i)
for (j = 0; j < c; ++j)
{
cout << " " << a[i][j];
if (j == c - 1)
cout << endl
<< endl;
}
// Finding transpose of matrix
for (i = 0; i < r; ++i)
for (j = 0; j < c; ++j)
{
trans[j][i] = a[i][j];
}
// Displaying the transpose
cout << "Transpose of Matrix: " << endl;
for (i = 0; i < c; ++i)
for (j = 0; j < r; ++j)
{
cout << " " << trans[i][j];
if (j == r - 1)
cout << endl
<< endl;
}
cout << endl;
cout << "Do you want to try again? (Yes = 1, No = Any Key)\n";
string respond;
cout << "Your choice: ";
cin >> respond;
if (respond == "1")
{
system("cls");
transpose();
}
else
{
system("cls");
main();
}
}
else
{
system("cls");
cout << "Please input valid numbers from 1 to 5 ! " << endl;
transpose();
}
}
void sum_matrices()
{
system("cls");
cout << "\t\tSUM TWO MATRICES\n";
cout << "\tNOTE: Rows 1 = Rows 2 && Columns 1 = Columns 2\n";
cout << "Please input details for the First Matrix: \n";
int row_input, col_input;
cout << "Rows (max 5): ";
cin >> row_input;
cout << "Columns (max 5): ";
cin >> col_input;
int a[5][5];
cout << "Now input elements of First Matrix: ";
if (row_input > 0 && row_input <= 5 && col_input > 0 && col_input <= 5)
{
for (int row = 0; row < row_input; row++)
{
for (int col = 0; col < col_input; col++)
{
cin >> a[row][col];
}
}
cout << "First Matrix: \n";
for (int row = 0; row < row_input; row++)
{
for (int col = 0; col < col_input; col++)
{
cout << a[row][col] << " ";
}
cout << endl;
}
}
else
{
system("cls");
cout << "Please input valid numbers from 1 to 5 ! " << endl;
read_display();
}
// for the second matrix
cout << endl;
cout << "Please input details for the Second Matrix: \n";
int row_input2, col_input2;
cout << "Rows (max 5): ";
cin >> row_input2;
cout << "Columns (max 5): ";
cin >> col_input2;
int b[5][5];
cout << "Now input elements of Second Matrix: ";
if (row_input2 > 0 && row_input2 <= 5 && col_input2 > 0 && col_input2 <= 5)
{
for (int row = 0; row < row_input2; row++)
{
for (int col = 0; col < col_input2; col++)
{
cin >> b[row][col];
}
}
cout << "Second Matrix: \n";
for (int row = 0; row < row_input2; row++)
{
for (int col = 0; col < col_input2; col++)
{
cout << b[row][col] << " ";
}
cout << endl;
}
}
else
{
system("cls");
cout << "Please input valid numbers from 1 to 5 ! " << endl;
read_display();
}
// validation for adding matrices
int sum[5][5];
if (row_input == row_input2 && col_input == col_input2)
{
// Adding Two matrices
for (int row = 0; row < row_input; row++)
{
for (int col = 0; col < col_input; col++)
{
sum[row][col] = a[row][col] + b[row][col];
}
}
// Displaying the resultant sum matrix.
cout << endl
<< "Sum of two matrix is: " << endl;
for (int row = 0; row < row_input; row++)
{
for (int col = 0; col < col_input; col++)
{
cout << sum[row][col] << " ";
}
cout << endl;
}
}
else
{
cout << endl;
cout << "This Matrices cannot be added.";
}
// asking play again
cout << endl;
cout << "Do you want to try again? (Yes = 1, No = Any Key)\n";
string respond;
cout << "Your choice: ";
cin >> respond;
if (respond == "1")
{
system("cls");
sum_matrices();
}
else
{
system("cls");
main();
}
}
void product()
{
system("cls");
cout << "\t\tMULTIPLY TWO MATRICES\n";
cout << "\tNOTE: Rows 1 = Column 2 \n";
cout << "Please input details for the First Matrix: \n";
int row_input, col_input;
cout << "Rows (max 5): ";
cin >> row_input;
cout << "Columns (max 5): ";
cin >> col_input;
int a[5][5];
cout << "Now input elements of First Matrix: ";
if (row_input > 0 && row_input <= 5 && col_input > 0 && col_input <= 5)
{
for (int row = 0; row < row_input; row++)
{
for (int col = 0; col < col_input; col++)
{
cin >> a[row][col];
}
}
cout << "First Matrix: \n";
for (int row = 0; row < row_input; row++)
{
for (int col = 0; col < col_input; col++)
{
cout << a[row][col] << " ";
}
cout << endl;
}
}
else
{
system("cls");
cout << "Please input valid numbers from 1 to 5 ! " << endl;
read_display();
}
// for the second matrix
cout << endl;
cout << "Please input details for the Second Matrix: \n";
int row_input2, col_input2;
cout << "Rows (max 5): ";
cin >> row_input2;
cout << "Columns (max 5): ";
cin >> col_input2;
int b[5][5];
cout << "Now input elements of Second Matrix: ";
if (row_input2 > 0 && row_input2 <= 5 && col_input2 > 0 && col_input2 <= 5)
{
for (int row = 0; row < row_input2; row++)
{
for (int col = 0; col < col_input2; col++)
{
cin >> b[row][col];
}
}
cout << "Second Matrix: \n";
for (int row = 0; row < row_input2; row++)
{
for (int col = 0; col < col_input2; col++)
{
cout << b[row][col] << " ";
}
cout << endl;
}
}
else
{
system("cls");
cout << "Please input valid numbers from 1 to 5 ! " << endl;
read_display();
}
// validation for multiplication matrices
int multi[5][5];
if (row_input == col_input2)
{
// initializing the matrix of multiplication
for (int row = 0; row < row_input; row++)
{
for (int col = 0; col < col_input2; col++)
{
multi[row][col] = 0;
}
}
for (int row = 0; row < row_input; row++)
{
for (int col = 0; col < col_input2; col++)
{
for (int i = 0; i < col_input; i++)
{
multi[row][col] += a[row][col] * b[row][col];
}
}
}
// displaying multiplication of two matrices
cout << endl;
cout << "Result of Multiplication: \n";
for (int row = 0; row < row_input; row++)
{
for (int col = 0; col < col_input2; col++)
{
cout << multi[row][col] << " ";
}
cout << endl;
}
}
else
{
cout << endl;
cout << "This Matrices cannot be multiplied.";
}
// asking play again
cout << endl;
cout << "Do you want to try again? (Yes = 1, No = Any Key)\n";
string respond;
cout << "Your choice: ";
cin >> respond;
if (respond == "1")
{
system("cls");
sum_matrices();
}
else
{
system("cls");
main();
}
}
void main_menu_view()
{
system("color 3F");
cout << "\t\t\t===============================\n";
cout << "\t\t\t\tM A I N M E N U\n";
cout << "\t\t\t===============================\n";
cout << "\t\t\t[1] Read and Display Matrix\n";
cout << "\t\t\t[2] Transpose\n";
cout << "\t\t\t[3] Sum of two Matrices\n";
cout << "\t\t\t[4] Product of two Matrices\n\n";
}
int main22()
{
main_menu_view();
cout << "\t\t\tYOUR CHOICE: ";
string user_choice;
cin >> user_choice;
// validating the user input
if (user_choice == "1" || user_choice == "2" || user_choice == "3" || user_choice == "4")
{
if (user_choice == "1")
read_display();
else if (user_choice == "2")
transpose();
else if (user_choice == "3")
sum_matrices();
else if (user_choice == "4")
product();
}
else
{
system("cls"); // function for the clearing the screen of console
cout << "\t\tYou have inputted wrong number, please try again!\n";
main();
}
return 0;
}