diff options
| author | Miles-Cell <[email protected]> | 2024-02-15 14:48:11 -0800 |
|---|---|---|
| committer | Miles-Cell <[email protected]> | 2024-02-15 14:48:11 -0800 |
| commit | 87d3c5a70bb78730bad5116d24b3a062d577aa90 (patch) | |
| tree | 3e4c06f3d5edc201ce0dca37fb4f80d5225594db | |
| parent | Started project. Main.cpp was created, as intrusted. (diff) | |
| download | in-class-exercise-11-miles-cell-87d3c5a70bb78730bad5116d24b3a062d577aa90.tar.xz in-class-exercise-11-miles-cell-87d3c5a70bb78730bad5116d24b3a062d577aa90.zip | |
Exercise Completed!!
| -rw-r--r-- | In Class Exercise 11/In Class Exercise 11/Main.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/In Class Exercise 11/In Class Exercise 11/Main.cpp b/In Class Exercise 11/In Class Exercise 11/Main.cpp index cb707ae..fb241df 100644 --- a/In Class Exercise 11/In Class Exercise 11/Main.cpp +++ b/In Class Exercise 11/In Class Exercise 11/Main.cpp @@ -6,10 +6,6 @@ #include <iostream> -using std::cout; -using std::cin; -using std::endl; - void printMatrix(int matrix[3][3]) { for (int i = 0; i < 3; ++i) { for (int j = 0; j < 3; ++j) { |