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
Operations
In mathematics and computer science, an operation is an event that is carried out to satisfy a given task. Basic operations of a computer system are input, processing, output, storage, and control.
Basic Operators
An operator is a symbol that indicates an operation to be performed. We are familiar with operators in mathematics; operators used in computer programming are—in many ways—similar to mathematical operators.
Division Operator
We all learnt about division—and the division operator—in school. You probably know of both these symbols as representing division:
Modulus Operator
Modulus can be represented either as (mod or modulo) in computing operation. Modulus comes under arithmetic operations. Any number or variable which produces absolute value is modulus functionality. Magnitude of any function is totally changed by modulo operator as it changes even negative value to positive.
Operators
In the realm of programming, operators refer to the symbols that perform some function. They are tasked with instructing the compiler on the type of action that needs to be performed on the values passed as operands. Operators can be used in mathematical formulas and equations. In programming languages like Python, C, and Java, a variety of operators are defined.
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 round4
Trending now
This is a popular solution!
Step by step
Solved in 2 steps