Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

I\'m trying to modify this code to allow wagering. Initialize the balance to 100

ID: 3629239 • Letter: I

Question

I'm trying to modify this code to allow wagering. Initialize the balance to 1000 dollars. Prompt the player to enter a wager. Check that the wager is less than or equal to balance, and if it is not, have the user reenter the wager until a valid wager is entered. After a correct wager is entered, run one game of craps. If the player wins increase balance by wager, If player loses decrease balance by wager. Displace the new balance and check whether balance has become zero and if so, display the message "Sorry You Busted!"

Here is the code

using System;

public class Craps
{
// create random number generator for use in method RollDice
private static Random randomNumbers = new Random();

// enumeration with constants that represent the game status
private enum Status { CONTINUE, WON, LOST }

// enumeration with constants that represent common rolls of the dice
private enum DiceNames
{
SNAKE_EYES = 2,
TREY = 3,
SEVEN = 7,
YO_LEVEN = 11,
BOX_CARS = 12
}

// plays one game of craps
public static void Main( string[] args )
{
// gameStatus can contain CONTINUE, WON or LOST
Status gameStatus = Status.CONTINUE;
int myPoint = 0; // point if no win or loss on first roll

int sumOfDice = RollDice(); // first roll of the dice

// determine game status and point based on first roll
switch ( ( DiceNames ) sumOfDice )
{
case DiceNames.SEVEN: // win with 7 on first roll
case DiceNames.YO_LEVEN: // win with 11 on first roll
gameStatus = Status.WON;
break;
case DiceNames.SNAKE_EYES: // lose with 2 on first roll
case DiceNames.TREY: // lose with 3 on first roll
case DiceNames.BOX_CARS: // lose with 12 on first roll
gameStatus = Status.LOST;
break;
default: // did not win or lose, so remember point
gameStatus = Status.CONTINUE; // game is not over
myPoint = sumOfDice; // remember the point
Console.WriteLine( "Point is {0}", myPoint );
break;
} // end switch

// while game is not complete
while ( gameStatus == Status.CONTINUE ) // game not WON or LOST
{
sumOfDice = RollDice(); // roll dice again

// determine game status
if ( sumOfDice == myPoint ) // win by making point
gameStatus = Status.WON;
else
// lose by rolling 7 before point
if ( sumOfDice == ( int ) DiceNames.SEVEN )
gameStatus = Status.LOST;
} // end while

// display won or lost message
if ( gameStatus == Status.WON )
Console.WriteLine( "Player wins" );
else
Console.WriteLine( "Player loses" );
} // end Main

// roll dice, calculate sum and display results
public static int RollDice()
{
// pick random die values
int die1 = randomNumbers.Next( 1, 7 ); // first die roll
int die2 = randomNumbers.Next( 1, 7 ); // second die roll

int sum = die1 + die2; // sum of die values

// display results of this roll
Console.WriteLine( "Player rolled {0} + {1} = {2}",
die1, die2, sum );
return sum; // return sum of dice
} // end method RollDice
} // end class Craps

Explanation / Answer

I have the same problem. Did you finish it ?