Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. private String RPSdisplay(int rpsdisplay){
  2. String returnValue = "";
  3.  
  4. switch(rpsdisplay)
  5. {
  6. case 1: returnValue = "Rock";
  7. break;
  8. case 2: returnValue = "Paper";
  9. break;
  10. case 3: returnValue = "Scissors";
  11. break;
  12. }
  13. return returnValue;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement