Question: Lo Shu Magic Square - Write in C++ The Lo Shu Magic Square is a grid with 3 rows and 3 columns shown in Figure
Lo Shu Magic Square - Write in C++
The Lo Shu Magic Square is a grid with 3 rows and 3 columns shown in Figure 7-19 . The Lo Shu Magic Square has the following properties:
The grid contains the numbers 1 through 9 exactly.
The sum of each row, each column, and each diagonal all add up to the same number.
In a program you can simulate a magic square using a two-dimensional array. Write a function that accepts a two-dimensional array as an argument, and determines whether the array is a Lo Shu Magic Square. Test the function in a program.
Implement 4 functions to check if it is a Magic Box i. getRowTotal: Function returns the sum of the specified row. It consists of 5 arguments, the array, its dimension, the specific row and the sum of the row. ii. getColTotal: Function returns the sum of the specified column. It consists of 5 arguments, the array, its dimension, the specific column and the sum of the column. iii. getDiagLeftTotal: Function returns the sum of the diagonal. It consists of 4 arguments, the array, its dimension, and the sum of the diagonal that begins in the upper left corner and ends in the lower right corner. iv. getDiagRightTotal: Function returns the sum of the diagonal. It consists of 4 arguments, the array, its dimension, and the sum of the diagonal that begins in the upper right corner and ends in the lower left corner. v. Build a main program that performs the verification using these functions.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
