diff options
| author | BensProgramma <[email protected]> | 2021-12-03 17:59:33 -0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-12-03 17:59:33 -0800 |
| commit | 6dcbac8fce08fc1f71858ac5a032f68d1898c8cc (patch) | |
| tree | 5796f06af0d952dd1bf31844f8dafc66d9f8bc8a /Project3_Hernandez_Schroeder | |
| parent | more documentation updates (diff) | |
| download | archived-project-3-hernandez-schroeder-6dcbac8fce08fc1f71858ac5a032f68d1898c8cc.tar.xz archived-project-3-hernandez-schroeder-6dcbac8fce08fc1f71858ac5a032f68d1898c8cc.zip | |
Runs txt.file
Diffstat (limited to 'Project3_Hernandez_Schroeder')
| -rw-r--r-- | Project3_Hernandez_Schroeder/Project3_Hernandez_Schroeder_RUNS.txt | 203 |
1 files changed, 203 insertions, 0 deletions
diff --git a/Project3_Hernandez_Schroeder/Project3_Hernandez_Schroeder_RUNS.txt b/Project3_Hernandez_Schroeder/Project3_Hernandez_Schroeder_RUNS.txt new file mode 100644 index 0000000..dc14e18 --- /dev/null +++ b/Project3_Hernandez_Schroeder/Project3_Hernandez_Schroeder_RUNS.txt @@ -0,0 +1,203 @@ +Project3_Hernadez_Schroeder_RUNS.txt
+
+
+*****************************************************
+ 3x3 Matrix Calculator
+*****************************************************
+(Before we start, we need two 3x3 Matrices, A and B)
+
+Enter the elements of Matrix A (by row):
+row 1
+element 1: 1.23
+element 2: 1.345
+element 3: 2.65
+row 2
+element 1: 2.54
+element 2: 123.65
+element 3: 235
+row 3
+element 1: 5.876
+element 2: 2.654
+element 3: 12324.6
+
+Enter the Elements of Matrix B (by row):
+row 1
+element 1: 1
+element 2: 4.6
+element 3: 7
+row 2
+element 1: 43
+element 2: 65
+element 3: 98
+row 3
+element 1: 100
+element 2: 200
+element 3: 300
+
+
+ Matrix A:
+ 1.23 1.345 2.65
+ 2.54 123.65 235
+ 5.876 2.654 12324.6
+
+ Matrix B:
+ 1 4.6 7
+ 43 65 98
+ 100 200 300
+
+
+ 1) Get New Matrices
+ 2) Multiply Matrices
+ 3) Add Matrices
+ 4) Exit
+
+Select from the menu above: 2
+
+ MATRIX MULTIPLICATION
+ Matrix A:
+ 1.23 1.345 2.65
+ 2.54 123.65 235
+ 5.876 2.654 12324.6
+
+ Matrix B:
+ 1 4.6 7
+ 43 65 98
+ 100 200 300
+
+ A X B = C:
+ 324.065 623.083 935.42
+ 28819.5 55048.9 82635.5
+ 1.23258e+06 2.46512e+06 3.69768e+06
+
+
+ 1) Get New Matrices
+ 2) Multiply Matrices
+ 3) Add Matrices
+ 4) Exit
+
+Select from the menu above: 3
+
+ MATRIX ADDITION
+ Matrix A:
+ 1.23 1.345 2.65
+ 2.54 123.65 235
+ 5.876 2.654 12324.6
+
+ Matrix B:
+ 1 4.6 7
+ 43 65 98
+ 100 200 300
+
+ A + B = C:
+ 2.23 5.945 9.65
+ 45.54 188.65 333
+ 105.876 202.654 12624.6
+
+
+ 1) Get New Matrices
+ 2) Multiply Matrices
+ 3) Add Matrices
+ 4) Exit
+
+Select from the menu above: 1
+
+Enter the elements of Matrix A (by row):
+row 1
+element 1: 1
+element 2: 2
+element 3: 3
+row 2
+element 1: 4
+element 2: 5
+element 3: 6
+row 3
+element 1: 7
+element 2: 8
+element 3: 9
+
+Enter the Elements of Matrix B (by row):
+row 1
+element 1: 2
+element 2: 4
+element 3: 6
+row 2
+element 1: 8
+element 2: 10
+element 3: 12
+row 3
+element 1: 14
+element 2: 16
+element 3: 18
+
+
+ Matrix A:
+ 1 2 3
+ 4 5 6
+ 7 8 9
+
+ Matrix B:
+ 2 4 6
+ 8 10 12
+ 14 16 18
+
+
+ 1) Get New Matrices
+ 2) Multiply Matrices
+ 3) Add Matrices
+ 4) Exit
+
+Select from the menu above: 3
+
+ MATRIX ADDITION
+ Matrix A:
+ 1 2 3
+ 4 5 6
+ 7 8 9
+
+ Matrix B:
+ 2 4 6
+ 8 10 12
+ 14 16 18
+
+ A + B = C:
+ 3 6 9
+ 12 15 18
+ 21 24 27
+
+
+ 1) Get New Matrices
+ 2) Multiply Matrices
+ 3) Add Matrices
+ 4) Exit
+
+Select from the menu above: 2
+
+ MATRIX MULTIPLICATION
+ Matrix A:
+ 1 2 3
+ 4 5 6
+ 7 8 9
+
+ Matrix B:
+ 2 4 6
+ 8 10 12
+ 14 16 18
+
+ A X B = C:
+ 63 78 93
+ 144 177 210
+ 225 276 327
+
+
+ 1) Get New Matrices
+ 2) Multiply Matrices
+ 3) Add Matrices
+ 4) Exit
+
+Select from the menu above: 4
+ Thank You, Good Bye!!
+
+
+C:\Users\Lenovo\source\repos\Project3_Hernandez_Schroeder\Debug\Project3_Hernandez_Schroeder.exe (process 5276) exited with code 0.
+To automatically close the console when debugging stops, enable Tools->Options->Debugging->Automatically close the console when debugging stops.
+Press any key to close this window . . .
|