Design a python program that simulates the game rock, paper, and scissors. You are to keep track of your wins, losses, and ties. You are to allow the users to play over and over again until he or she decides to quit. After each throw, you will display the results of the throw followed by the cu
ent win, loss, tie numbers. A throw consists of the player picking either Rock, Paper, or Scissors followed by the computer randomly choosing Rock, Paper, or Scissors.
Rules of the game:
Rock beats Scissors.
Paper beats Rock.
Scissor beats paper.
MENU:
1. Throw Rock
2. Throw Pape
3. Throw Scissors
4. Quit
Sample Run:
Option 1:
== RESULTS ==
Computer Throws Scissors, you win
Wins…………………...: 1
Losses………………...: 0
Ties…………………..: 0
Longest Win Streak....: 1
Longest Lose Streak..: 0
Note: After each Throw you will display the results from above
Assignment 6:
Resources: Chapter 12: JavaFX: GUI Programming and Basic Controls
Use Net Beans or Eclipse and any Java Compiler to complete the following programs.
Submission: You need to add the screenshots for each question along with the source code.
Hint: Use the comments in the source code.
Complete both Questions 2 & 8.