Write a C program that prints an n by n magic square

Assignment Help C/C++ Programming
Reference no: EM131121663

Question:
(Main issue is in bold, other parts is already coded)
Write a C program that prints an n by n "magic square" (a square arrangement of the numbers 1, 2, ..., n2 in which the sums of the rows, columns, and diagonals are all the same). The user will specify the value of n.
Store the magic square in a two dimensional array. Start by placing the number 1 in the middle of row 0. Place each of the remaining numbers 2, 3, ... , n2 by moving up one row and over one column. Any attempt to go outside the bounds of the array should "wrap around" to the opposite side of the array. For example, instead of storing the next number in row -1 (row negative 1), we would store it in row n - 1 (the last row). Instead of storing the next number in column n, we would store it in column 0. If a particular element is already occupied, put the number directly below the previously stored number.
The magic square only needs to be up to 11 by 11 and can only be created from odd numbers.
I want you to use functions for this project. I would like you to separately declare and define 3 separate functions. One for creating the magic square and putting it the two dimensional array.One for printing the magic square (for your printf, use 5 minimum field width).Finally, one for getting and returning the sum of the numbers in the magic square array.
Take in input in the main function. If the input is an even number or is a number not between 1 and 11, exit the program. Also, print the value of the sum of magic numbers via the main function, since your function to calculate this should only be returning a integer.
For the sum of all the numbers in the magic square array, I want you to use while loops. You can use either for loops or while loops for the print and create magic number functions.
HINT: The only function that needs to return something is the sum magic square function (integer). The other two function don't need to return anything. C is a pass by value language, meaning that it typically can't change the values of arguments in functions. This doesn't apply to arrays because they are references (more in chapter 12). That means one argument in the functions should be a two dimensional array. You will be able to operate on this array.
Sample I/O:
Enter size of magic square: 3
8 1 6
3 5 7
4 9 2
Sum of Magic Numbers: 45
Enter size of magic square: 2
Invalid Input: 2
Enter size of magic square: 103
Invalid Input: 103
Enter size of magic square: 7
30 39 48 1 10 19 28
38 47 7 9 18 27 29
46 6 8 17 26 35 37
5 14 16 25 34 36 45
13 15 24 33 42 44 4
21 23 32 41 43 3 12
22 31 40 49 2 11 20
Sum of Magic Numbers: 1225

Reference no: EM131121663

Questions Cloud

What exactly do it yourself product relocating supplier next : What exactly do it yourself product relocating supplier next? Some do it yourself service company refers to professionals that supply a very restricted system.
Which components of this description correspond to the terms : The enzyme catalyzes the dehydration (release to air) of up to 107 CO2 molecules per second Which components of this description correspond to the terms enzyme, substrate, and turnover number?
Identify the benefits and drawbacks of using the capm : Explain how the CAPM assists in calculating the weighted average costs of capital (WACC) and its components.  Illustrate why some managers have difficulty applying the Capital Asset Pricing Model (CAPM) in financial decision making.
Market entry-market development-brand building activities : Develop a concise set of highly focussed marketing strategies for your most attractive and highest priority markets at Duke Energy. These strategies will guide your market entry, market development, and brand building activities. Establish budgets fo..
Write a C program that prints an n by n magic square : Write a C program that prints an n by n "magic square" (a square arrangement of the numbers 1, 2, ..., n2 in which the sums of the rows, columns, and diagonals are all the same). The user will specify the value of n.
Evaluate the validity and reliability of the data : Describe why each piece of evidence is relevant to patients, the community, and the hospital. Summarize the analysis used to create the recommendation. Evaluate the validity and reliability of the data
Mentions the theory of transaction cost analysis : 1. The chapter mentions the theory of transaction cost analysis (TCA). What role does TCA play in the decision to use a company sales force rather than independent manufacturers' agents?
Respond the - business ethics and stakeholder theory : Read the article titled, "Recognition, Reification, and Practices of Forgetting: Ethical Implications of Human Resource Management," located here. Be prepared to discuss. Next, analyze one (1) human resource ethical issue that you believe is promi..
What was the thickness of the resulting oil slick : By mistake, a quart of oil was dumped into a swimming pool that measures 25.0cm by 30.0cm (assume the oil spread entirely across the surface of the water in the pool)

Reviews

Write a Review

C/C++ Programming Questions & Answers

  Create program that uses functions and reference parameters

Create program that uses functions and reference parameters, and asks user for the outside temperature.

  Write a program using vectors and iterators

Write a program using vectors and iterators that allows a user to maintain a personal list of DVD titles

  Write the code required to analyse and display the data

Calculate and store the average for each row and column. Determine and store the values for the Average Map.

  Write a webservices application

Write a webservices application that does a simple four function calculator

  Iimplement a client-server of the game

Iimplement a client-server version of the rock-paper-scissors-lizard-Spock game.

  Model-view-controller

Explain Model-View-Controller paradigm

  Design a nested program

How many levels of nesting are there in this design?

  Convert celsius temperatures to fahrenheit temperatures

Write a C++ program that converts Celsius Temperatures to Fahrenheit Temperatures.

  Evaluate and output the value in the given base

Write C program that will input two values from the user that are a Value and a Base with which you will evaluate and output the Value in the given Base.

  Design a base class shape with virtual functions

Design a base class shape with virtual functions

  Implementation of classes

Implementation of classes Chart and BarChart. Class barChart chould display a simple textual representation of the data

  Technical paper: memory management

Technical Paper: Memory Management, The intent of this paper is to provide you with an in depth knowledge of how memory is used in executing, your programs and its critical support for applications.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd