Program



Create a program to allow a user to play a modified “craps” games. The rules will be as follows: 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 ii) If the new total is a 7, the user loses. And the process is the same as losing in iii) If the new total is anything else the user must roll again and again try to match 4) Show the user their current total. If the total is 0, then terminate the program. If the total is greater than 0, ask if they want to continue to play. If NO, exit. If YES, continue from step #2. same as winning in (a) above (b) above. the “point” of the first roll