Hi A game is played in which a single dice is tossed. If the result is 4 or 6, the player wins. If the result is 1 or 3, the player loses. If the result is 2 or 5, the player continues to roll the dice until a win or a loss occurs. A complete C++ function game() is given below, re-write the function with switch-case state

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter6: Looping
Section: Chapter Questions
Problem 5GZ
icon
Related questions
Question
100%

Hi

A game is played in which a single dice is tossed. If the result is 4 or 6, the player wins. If the result is 1 or 3, the player loses. If the result is 2 or 5, the player continues to roll the dice until a win or a loss occurs. A complete C++ function game() is given below, re-write the function with switch-case statement.

void game (int roll)
if ((roll ==
1) || (roll == 3))
cout << roll
www
くく
You LOSE " < endl;
else
if ((roll == 4) || (roll == 6))
cout << roll
ww
くく
- You WIN " << endl;
wwww
else
cout << roll
wwwm
くく 1
Roll AGAIN " << endl;
Transcribed Image Text:void game (int roll) if ((roll == 1) || (roll == 3)) cout << roll www くく You LOSE " < endl; else if ((roll == 4) || (roll == 6)) cout << roll ww くく - You WIN " << endl; wwww else cout << roll wwwm くく 1 Roll AGAIN " << endl;
Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Concept of Parenthesis
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
  • SEE MORE QUESTIONS
Recommended textbooks for you
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT