Due Monday, March 24, 11:59pm
Note, Professor's office hours are cancelled on 3/24 so try to finish the assignment by 3/21.
For this assignment, you will create a game of Rock, Paper, Scissors. If you have never played the game, try your luck here: http://www.nytimes.com/interactive/science/rock-paper-scissors.html?_r=0
Your game will work as follows:
The user interface will allow the user to select Rock, Paper, or Scissors. You may do this however you like, but a suggested option is to use three buttons with images to represent the three choices. Once the user has made a selection, visibly show which item was selected, for example by changing the color of the chosen option.
When the user makes his/her choice (button is clicked), your program will make a random choice between Rock, Paper, and Scissors to represent the computer's pick. You will use the random integer block from the Math drawer to choose a random number 1, 2, or 3 where 1 represents Rock, 2 represents Paper, and 3 represents Scissors.
Finally, you will use an if block to compare the user choice and the computer choice and display the result in a Label. The rules are as follows:
Your grade will be based on the following: