Guest User

Untitled

a guest
Jul 19th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. # Rock Paper Scissors
  2.  
  3. ## Background
  4.  
  5. Here we will recreate the classic game of Rock Paper Scissors using functions! Functions will break our program down into easily understood parts. Your task is to use the given functions to build the game.
  6.  
  7. ## Task
  8.  
  9. Choose your level based on difficulty:
  10.  
  11. * Level 1 - game functions are defined for you - your goal is to put those functions together to create a working game of RPS
  12. * Level 2 - only some game functions are defined - your goal is to complete the other functions, then use them to create a working game of RPS
  13. * Level 3 - all game functions are outlined, but no code is written - your goal is to write all the functions yourself according to the specifications, and then put them all together to create a working game of RPS.
  14.  
  15. The game of Rock Paper Scissors should work by:
  16.  
  17. * Asking the user how many rounds they want to play
  18. * Use a loop to play each round, keeping track of score
  19. * Print the scoreboard at the end of each round
  20. * Print the overall winner at the end of all the rounds
  21.  
  22. ## Extensions
  23.  
  24. ### Level 2
  25.  
  26. This will be similar to level 1, except we only define a few of the functions for you. You'll have to write the code for the other functions (we provide the specifications), then you combine them to create a working game of RPS.
  27.  
  28. ### Level 3
  29.  
  30. Now we don't give you any code - only specifications - and you have to write the functions, then put them together at the end to create the game of RPS.
Add Comment
Please, Sign In to add comment