You are given a grid as shown in the figure below. You can determine the color and number  of each square from the grid. Write a C++ program that inputs two numbers within the grid range. Your  program will determine if the two squares entered in this grid have the same color or not and display the  appropriate message, let’s call this ROUND1. You then again ask the user to enter two numbers and  determine if the two squares have the same color then display a victory message but this time you will  have to make sure that does not repeat the numbers entered in the first round. If he does, give him a  warning and ask to enter values again (You can give max of 3 warnings, on the fourth warning you will end  the program). Total rounds of this guessing game will be 5. In each round you will make sure that the  numbers entered does not match with any of the previous victory numbers.  If the user wins at least 3 rounds of this guessing game, then it's a win.  NOTE: You cannot use arrays to store the matrix information. Input: 2 4 // are not equal =>Round1  Input: 9 15 //are equal =>Round2  Input: 9 15 //WARNING 1 and is not considered as a round3  Input: 16 21 //are equal =>Round3  Input: 16 21 //WARNING 2 and is not considered as a round4  Input: 9 5 //WARNING 3 and is not considered as a round

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
icon
Concept explainers
Question

You are given a grid as shown in the figure below. You can determine the color and number  of each square from the grid. Write a C++ program that inputs two numbers within the grid range. Your  program will determine if the two squares entered in this grid have the same color or not and display the  appropriate message, let’s call this ROUND1. You then again ask the user to enter two numbers and  determine if the two squares have the same color then display a victory message but this time you will  have to make sure that does not repeat the numbers entered in the first round. If he does, give him a  warning and ask to enter values again (You can give max of 3 warnings, on the fourth warning you will end  the program). Total rounds of this guessing game will be 5. In each round you will make sure that the  numbers entered does not match with any of the previous victory numbers. 

If the user wins at least 3 rounds of this guessing game, then it's a win. 

NOTE: You cannot use arrays to store the matrix information.

  1. Input: 2 4 // are not equal =>Round1 
  2. Input: 9 15 //are equal =>Round2 
  3. Input: 9 15 //WARNING 1 and is not considered as a round3 
  4. Input: 16 21 //are equal =>Round3 
  5. Input: 16 21 //WARNING 2 and is not considered as a round4 
  6. Input: 9 5 //WARNING 3 and is not considered as a round4 
1
4
6.
8
9.
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
3.
2.
Transcribed Image Text:1 4 6. 8 9. 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 3. 2.
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Operators
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education