Advertisement
Guest User

Untitled

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