With your design (algorithm) in hand, you are ready to begin writing the
program. Start by selecting one of the “bottom-most” methods (i.e., one
that doesn't call any other methods) and implementing it. Test it
thoroughly before you move on to other methods. Continue implementing
methods one-by-one from the bottom-up until you are finished! This game
requires the use of 5 dice, so I recommend storing the dice as an array.
I have provided a method that will display dice values in an array
using ASCII art. The method is available at
http://josephus.sergeantservices.com/classes/p1/source/DropDeadStarter.java.