diff options
| -rw-r--r-- | CST116F2021-Proj3/Project_3_Voids.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CST116F2021-Proj3/Project_3_Voids.h b/CST116F2021-Proj3/Project_3_Voids.h index c7d4653..a512f6a 100644 --- a/CST116F2021-Proj3/Project_3_Voids.h +++ b/CST116F2021-Proj3/Project_3_Voids.h @@ -1,5 +1,6 @@ #pragma once void ProcessChoice(int& choice); +void GetMatrix(int& rowM1, int& columnM1, int& rowM2, int& columnM2, int& iM, int& jM); int AddMatrix(int& rowa1, int& columna1, int& rowa2, int& columna2, int& ia, int& ja, int& ka); int MultiplyMatrix(int& row1, int& column1, int& row2, int& column2, int& i, int& j, int& k); |