please use java to answer the following question 2.This task is required to create Craps, which is a popular dice game played in casinos. You are supposed to write a program to play a variation of the game, as follows: • Roll two dice. (Each roll should produce two random numbers between 1 to 6) • Each die has six faces representing values 1, 2, …, and 6, respectively. • Check the sum of the two dice. If the sum is 2, 3, or 12 (your program should display craps), you lose the game. • If the sum of the two dice is 7 or 11 (your program should display naturals), you win the game. • If the sum of two dice is any value (i.e., 4, 5, 6, 8, 9, or 10), your program should establish a point in the game (meaning store that sum). Continue to roll the dice until the sum is either a 7 or the same point value which was established. If rolled sum is 7, you lose the game. Otherwise, if the rolled sum is equal to established point you win.
please use java to answer the following question
2.This task is required to create Craps, which is a popular dice game played in casinos.
You are supposed to write a program to play a variation of the game, as follows:
• Roll two dice. (Each roll should produce two random numbers between 1 to 6)
• Each die has six faces representing values 1, 2, …, and 6, respectively.
• Check the sum of the two dice. If the sum is 2, 3, or 12 (your program should display craps), you lose
the game.
• If the sum of the two dice is 7 or 11 (your program should display naturals), you win the game.
• If the sum of two dice is any value (i.e., 4, 5, 6, 8, 9, or 10), your program should establish a point in
the game (meaning store that sum). Continue to roll the dice until the sum is either a 7 or the same
point value which was established. If rolled sum is 7, you lose the game. Otherwise, if the rolled sum is
equal to established point you win.
Trending now
This is a popular solution!
Step by step
Solved in 5 steps with 2 images