Question: Create a program to allow a user to play a modified craps games. The rules will be as follows: Please do not use any advanced
Create a program to allow a user to play a modified craps games. The rules will be as follows: Please do not use any advanced concepts such as functions, classes, etc. This is a very simple program for a beginner C++ Class.
1) User starts with $50.00 as their total.
2) Ask the user for their bet (maximum bet is their current total).
3) Throw a pair of dice.
a) If the total value is 7 or 11, the user is an instant winner. The user has the amount bet added back into their total. Ask the user if they wish to play again and if so they start at step two above.
b) If the total value is 2, 3, or 12, the user is an instant loser. The user has the amount bet deducted from their total. Ask the user if they wish to play again and if so they start at step two above.
c) If the total is anything else, remember this total as the point and roll again.
i) If the new total is equal to the point, the user wins and the process is the same as winning in (a) above
ii) If the new total is a 7, the user loses. And the process is the same as losing in (b) above.
iii) If the new total is anything else the user must roll again and again try to match the point of the first roll.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
