Advertisement
Guest User

Untitled

a guest
Jul 16th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. package com.github.miyohide;
  2.  
  3. public class SampleGame {
  4.  
  5. public String play(String p1, String p2) {
  6. if ((p1.equals("rock") && p2.equals("scissors")) ||
  7. (p1.equals("scissors") && p2.equals("paper"))
  8. ) {
  9. return "player1Win";
  10. }
  11. return "";
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement