
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
expand_more
expand_more
format_list_bulleted
Question
![Sample Output #1:
[Mathletes Game]
Choose a game mode (0=Easy, 1=Hard): 0
Playing on easy mode, huh? Okay!
Q1. 3 * 4 = ?
12
Correct!
Q2. -3 * 7 = ?
Incorrect! Try again.
-21
Correct!
Q3. -1 * -2 = ?
3
Correct!
Q4. 10 * -10 = ?
-100
Correct!
Q5. 90 *
8 = ?
720
Correct!
You win!
Sample Output #2:
[Mathletes Game]
Choose a game mode (0=Easy, 1=Hard): 1
So, you want a challenge? Okay!
Q1. -12 * 7 = ?
-84
Correct!
Q2. -3 * 77 = ?
539
Incorrect!
Game over...](https://content.bartleby.com/qna-images/question/e799f64b-1f0b-4ff1-9ee3-5090ddf07729/70c89be7-8e4e-431c-8367-0b52011b922a/csvhkhc_thumbnail.png)
Transcribed Image Text:Sample Output #1:
[Mathletes Game]
Choose a game mode (0=Easy, 1=Hard): 0
Playing on easy mode, huh? Okay!
Q1. 3 * 4 = ?
12
Correct!
Q2. -3 * 7 = ?
Incorrect! Try again.
-21
Correct!
Q3. -1 * -2 = ?
3
Correct!
Q4. 10 * -10 = ?
-100
Correct!
Q5. 90 *
8 = ?
720
Correct!
You win!
Sample Output #2:
[Mathletes Game]
Choose a game mode (0=Easy, 1=Hard): 1
So, you want a challenge? Okay!
Q1. -12 * 7 = ?
-84
Correct!
Q2. -3 * 77 = ?
539
Incorrect!
Game over...

Transcribed Image Text:Assignment4C:
Mathletes Game! With the introduction of loops, we now know enough about programming to begin
creating simple games. Our first game (sponsored by the KSU College of Science and Mathematics)
will test your ability to solve multiplication problems.
Your game will first ask the player if they want to play on easy or hard mode. Save their response in
an appropriate variable (you will reference it later). Then, you will randomly generate two numbers
and display them to the player in the form of a multiplication problem. The possible numbers will
range between -255 and 255.
You will ask the player to solve the equation. You will keep creating multiplication questions until the
player wins or loses.
Based on whether the player chose “hard" or "easy" mode, the game will play a little differently.
Refer to the following rules for the difference:
Easy Mode
Hard Mode
Player only has to answer 5 questions
Player has to answer 10 questions
Player can try again if they get a question wrong Player loses instantly if they get a question
(up to two times)
wrong
Call the file name Assignment4C (.java, .cs, .cpp) and the class name Assignment4C. Example
outputs are shown below. Note that due to using a random number generator, you will not get
the same numerical results – but the formatting and wording should be the same.
User input is indicated in bold.
Expert Solution

arrow_forward
Step 1
Please check the below c++ code
Trending nowThis is a popular solution!
Step by stepSolved in 2 steps with 2 images

Knowledge Booster
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 ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education

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)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON

C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON

Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning

Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education