Going to Implement Going to Boston
Objectives
We would like to :- Learn the rules for the dice game Going to Boston.
- Design an algorithm for the dice game Going to Boston.
- Look at an implementation of Going to Boston.
Notes
- I would like to mostly implement Going To Boston, a simple dice game.
- Will skip the who goes first rule.
- I will skip the roll off for ties.
- Give an algorithm for the game.
-
MAIN Set up the dice Initialize the rounds won for each player to be 0 for each round Set the high score for the round to be 0 for each player Let the player take a trun Track the highest score Find the round winner. Print the results. To take a turn Roll all three dice and set the largest aside Roll the two remaining dice and set the largest aside Roll the last die Compute the score by adding all the die
-