Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Use following arrays in your program to test if it is Lo Shu Magic Square. int[][] magicArray = { {4, 9, 2}, {3, 5, 7},

Use following arrays in your program to test if it is Lo Shu Magic Square.

int[][] magicArray = { {4, 9, 2},

{3, 5, 7},

{8, 1, 6} };

int[][] normalArray = { {1, 2, 3},

image text in transcribed

{4, 5, 6},

{7, 8, 8} };

It's good practice to use one method to complete one task. For example, A checkRange method accepts a two-dimensional int array as an argument, and returns true if the values in the list are within the specified range (1-9). Otherwise, it returns false. A checkUnique method accepts a two-dimensional int array as an argument, and returns true if the value in the array are unique (no repetitive number). Otherwise, it returns false.

please who can help with this, I need it Java Thanks

20. Lo Shu Magic Square The Lo Shu Magic Square is a grid with 3 rows and 3 columns, shown in Figure 7-31. 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. This is shown in Figure 7-32. In a program you can simulate a magic square using a two-dimensional array. Write a method 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. Figure 7-31 Lo Shu Magic Square 4 92 WAVURULMUUTUSTESSE 3 5 7 | 16 Figure 7-32 Row, column, and diagonal sums in the Lo Shu Magic Square 4 9 21-15 | 3 5 7-15 8 1 6-15 NNTOLA

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Advanced Database Systems For Integration Of Media And User Environments 98

Authors: Yahiko Kambayashi, Akifumi Makinouchi, Shunsuke Uemura, Katsumi Tanaka, Yoshifumi Masunaga

1st Edition

9810234368, 978-9810234362

More Books

Students also viewed these Databases questions

Question

Why could the Robert Bosch approach make sense to the company?

Answered: 1 week ago