Create the logic for a dice game. The application randomly “throws” five dice for the computer and five dice for the player. After each random throw, store the results in an array. The application displays all the values, which can be from 1 to 6 inclusive for each die. Decide the winner based on the following hierarchy of die values. Any higher combination beats a lower one. For example, five of a kind beat four of a kind.

Throw Results
Five of a kind
Four of a kind
Three of a kind
A pair

For this game, the numeric dice values do not count. For example, if both players
have three of a kind, it’s a tie, no matter what the values of the three dice are.
Additionally, the game does not recognize a full house (three of a kind plus two of a
kind)

Game Output

Computer rolled: 5 2 6 4 2

You rolled 1 1 1 2 3

Computer has 2 of a kind

You have 3 of a kind

You win

Respuesta :

ACCESS MORE