Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
'Randomize statement to generate a seed for the Rnd function.
Randomize ' Seed random number generator.
Dice1% = Int(6 * Rnd + 1) ' Generate first die value.
Dice2% = Int(6 * Rnd + 1) ' Generate second die value.
Msg$ = "You rolled a " + LTrim$(Str$(Dice1%))
Msg$ = Msg$ + " and a " + LTrim$(Str$(Dice2%))
Msg$ = Msg$ + " for a total of "
Msg$ = Msg$ + LTrim$(Str$(Dice1% + Dice2%)) + "."
MsgBox Msg$ ' Display message.