From 62d8614daa16e89efe1ba16be1e19e001f13fc53 Mon Sep 17 00:00:00 2001 From: RossTheRoss Date: Thu, 4 Apr 2019 19:46:47 -0500 Subject: ??? --- ee1301/wk5/hw5_directory/strap012_HW5C.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ee1301') diff --git a/ee1301/wk5/hw5_directory/strap012_HW5C.cpp b/ee1301/wk5/hw5_directory/strap012_HW5C.cpp index 6156838..b2505e1 100644 --- a/ee1301/wk5/hw5_directory/strap012_HW5C.cpp +++ b/ee1301/wk5/hw5_directory/strap012_HW5C.cpp @@ -56,9 +56,9 @@ void getInput(int input[SIZE][SIZE]) { // oldArray: Array generated in getInput of SIZE // newArray: Array of same dimensions and data void makeNewArray(int oldArray[SIZE][SIZE], int newArray[SIZE][SIZE]) { - for (int row = 0; row < SIZE-1; row++) { - for (int column = 0; column < SIZE-1; column++) { - newArray[row+3][column] = oldArray[row][column]; + for (int row = 0; row < maxRow-1; row++) { + for (int column = 0; column < maxColumn-1; column++) { + newArray[row][column] = oldArray[row][column]; } } } -- cgit v1.2.3