Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a program ( magic _ square.py ) that will read a sequence of values from the user. The values should consist of digits from

Write a program (magic_square.py) that will read a sequence of values from the user. The
values should consist of digits from the set {1,2,dots,9} and at most one 'x'. The program must
check if the 'x' could be replaced by a digit so that the numbers make a 3 by 3 magic square. If
there is no 'x', then it should check if the digits make a magic square. It will display the numbers
in a 3 by 3 matrix if possible. It will then inform the user if the matrix makes a magic square or
not. A magic square is a matrix of numbers where the sum in any direction is the same (rows,
columns, and diagonals), and the square contains the numbers from 1 to the number of squares
(in this case, the numbers 1 to 9, each one exactly once). Design and break down your program
into different functions.
Sample run 4:
-----Magic Square Checker-----
Please enter the numbers 1 through 9:276/91438
276
951
438
The square is magical!
Sample run 5:
-----Magic Square Checker-----
Please enter the numbers 1 through 9: 276,91435
276
91
435
Sorry, the square isn't magical.
See the output below as a guide. Your program must be consistent with the sample run. Note
that the digits may be unseparated, or they may be separated by any character that is not a digit
or an x.
Sample run 1:
-----Magic Square Checker-----
Please enter the numbers 1 through 9: 146??782,5
Numbers do not make a square of size 3!
Sample run 2:
-----Magic Square Checker-----
Please enter the numbers 1 through 9: 146,78 x ,5
Numbers do not make a square of size 3!
Sample run 3:
Please enter the numbers 1 through 9: 276,9514-3-8
276
951
438
The square is magical!
image text in transcribed

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

Practical Neo4j

Authors: Gregory Jordan

1st Edition

1484200225, 9781484200223

More Books

Students also viewed these Databases questions

Question

6 How can an organisation increase its flexibility?

Answered: 1 week ago

Question

1.6 Identify ways that country culture influences global business.

Answered: 1 week ago