| 382 | } |
| 383 | |
| 384 | void main_menu_view() |
| 385 | { |
| 386 | system("color 3F"); |
| 387 | cout << "\t\t\t===============================\n"; |
| 388 | cout << "\t\t\t\tM A I N M E N U\n"; |
| 389 | cout << "\t\t\t===============================\n"; |
| 390 | cout << "\t\t\t[1] Read and Display Matrix\n"; |
| 391 | cout << "\t\t\t[2] Transpose\n"; |
| 392 | cout << "\t\t\t[3] Sum of two Matrices\n"; |
| 393 | cout << "\t\t\t[4] Product of two Matrices\n\n"; |
| 394 | } |
| 395 | int main22() |
| 396 | { |
| 397 | main_menu_view(); |