#include "Project_3_Voids.h" #include int main() { int choice = 0; int row1 = 0; int column1 = 0; int row2 = 0; int column2 = 0; int i = 0; int j = 0; int k = 0; int rowa1 = 0; int columna1 = 0; int rowa2 = 0; int columna2 = 0; int ia = 0; int ja = 0; int ka = 0; int rowM1 = 0; int columnM1 = 0; int rowM2 = 0; int columnM2 = 0; int iM = 0; int jM = 0; Menu(); ProcessChoice(choice); if (choice == 1) { GetMatrix(rowM1, columnM1, rowM2, columnM2, iM, jM); cout << "\n\nThe program is now finished, exitting\n\n\n\n"; return 0; } else if (choice == 2) { MultiplyMatrix(row1, column1, row2, column2, i, j, k); cout << "\n\nThe program is now finished, exitting\n\n\n\n"; return 0; } else if (choice == 3) { AddMatrix(rowa1, columna1, rowa2, columna2, ia, ja, ka); cout << "\n\nThe program is now finished, exitting\n\n\n\n"; return 0; } else if (choice == 4) { cout << "\n\nYou have chosen to exit, now exitting\n\n\n\n"; return 0; } else { cout << "\n\nYou have inputted the wrong number, please run the program again\n\n\n\n"; return 0; } }