Write a program that generates a magic square for an array

Assignment Help Computer Engineering
Reference no: EM132217596

C++ MAGIC SQUARE

write a program that generates a magic square for an array of size 3*3.

step1: use a 2d array of 3*3

step2: fill array with unique values 1-9 genrerated at random (ex. (rand()%9)+1)

use a function to check and see if the random numbers generated have been previously generated in the array,(check for unqiueness)

if the number is unique,store it in your 2d array

step3:display the 2d array

step4:check if thr 2d array is a magic square

(sum of each row=sum of each col.=sum of each diagonal)

step5:keep repeating the loop of steps1-4 until a magic square is found.

EX:

1 2 3

4 5 6

7 8 9

Not magic

2 3 1

4 5 6

7 8 9

not Magic

2 7 6

9 5 1

4 3 8

IS Magic

I CAN'T FIGURE OUT HOW TO OLNY HAVE THE NUMBER USED ONCE IN THE SQURE(NEED TO HAVE NONREPEATING NUMBERS)

#include <iostream>

#include <cstdlib>
#include <ctime>
#include <iomanip>
#include <stdio.h>
using namespace std;
void checkSquare(int a[][3]);

int main()
{
int a[3][3];
srand(time(0));

for (int i=0; i<3; i++)

for (int j=0; j<3;j++)
{

a[i][j]=1+(rand()%9);

}
for (int i=0; i<3; i++)
{
for (int j=0; j<3;j++)

cout<<a[i][j]<<" ";
cout<<endl;

}
}

Reference no: EM132217596

Questions Cloud

Implement a recursive descent parser for a logic calculator : The program should not exit when it encounters an error in the expression. Rather, it should output error information and then accept the next expression.
Explain what needs to be done to defend accounts : Eplain What You Have to do to Defend Accounts. Explain what needs to be done to defend accounts .
Give the associated range of destination host address : Consider a datagram network using 8-bit host addresses, i.e., IP addresses range from 0 to 255.
Write a function max that has two stringparameters : Write an expression that evaluates to true if the value of the string variable s1 is greater than the value of stringvariable s2 .
Write a program that generates a magic square for an array : Use a function to check and see if the random numbers generated have been previously generated in the array,(check for unqiueness)
The method needed to arrange for an object to be notified : The method needed to arrange for an object to be notified when a window's close-window button has been clicked is.
In a company is it good to have a back door account : Having a backdoor account (that is a username/password that can login in to an administrative account on all machines) can be very useful for IT staff.
Accept a variable parameter list of characters and return : Declare an array reference variable, week, and initialize it to an array containing the strings "mon", "tue", "wed", "thu", "fri", "sat", "sun" .
Which of the following is a correct interface : Suppose A is an interface, B is a concrete class with a default constructor that implements A.

Reviews

Write a Review

Computer Engineering Questions & Answers

  Mathematics in computing

Binary search tree, and postorder and preorder traversal Determine the shortest path in Graph

  Ict governance

ICT is defined as the term of Information and communication technologies, it is diverse set of technical tools and resources used by the government agencies to communicate and produce, circulate, store, and manage all information.

  Implementation of memory management

Assignment covers the following eight topics and explore the implementation of memory management, processes and threads.

  Realize business and organizational data storage

Realize business and organizational data storage and fast access times are much more important than they have ever been. Compare and contrast magnetic tapes, magnetic disks, optical discs

  What is the protocol overhead

What are the advantages of using a compiled language over an interpreted one? Under what circumstances would you select to use an interpreted language?

  Implementation of memory management

Paper describes about memory management. How memory is used in executing programs and its critical support for applications.

  Define open and closed loop control systems

Define open and closed loop cotrol systems.Explain difference between time varying and time invariant control system wth suitable example.

  Prepare a proposal to deploy windows server

Prepare a proposal to deploy Windows Server onto an existing network based on the provided scenario.

  Security policy document project

Analyze security requirements and develop a security policy

  Write a procedure that produces independent stack objects

Write a procedure (make-stack) that produces independent stack objects, using a message-passing style, e.g.

  Define a suitable functional unit

Define a suitable functional unit for a comparative study between two different types of paint.

  Calculate yield to maturity and bond prices

Calculate yield to maturity (YTM) and bond prices

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