Question: Use a C# or Python Console Application to create a basic game of Black Jack. This program will review the use of conditional statements. (Extra

Use a C# or Python Console Application to create a basic game of Black Jack. This program will review the use of conditional statements. (Extra Credit: Add a loop keep playing games until 21 is reached; keep track of how many games were played until 21 is reached). This game can be coded in many different ways; so, be creative video walk through to rely on. This assignment is to assess what you have learned about conditional statements You may share your ideas (and code) on the discussion board. Hint: If you want to get a random number between 2 and 11, use the following C# code: Random card new Random); /create a random object named "card" card1-card.Next(1, 12); generate a random number between 1 and 11 card2 card.Next(1,12); / generate a random number between 1 and 11 Program Requirements Black Jach Get two cards from the dealer with integer values between 2 and 11. Display them If the integers total 21, display "You win, Mr. Vegas!" If greater than 21 display " [#1 you busted!". If between 17 and 21, display "I'll stand at [#1!" Otherwise, display "[#] Hit me again
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
