Advertisement
Guest User

Untitled

a guest
Sep 4th, 2016
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. public class Playaa {
  2. private int coloda=27;
  3.  
  4. public void setColoda(int a){
  5. coloda = a;
  6. }
  7.  
  8. public int getColoda(){
  9. return coloda;
  10. }
  11.  
  12.  
  13. public int Play(){
  14. int a = (int)(Math.random()*13);
  15. if(a==0){
  16. a=2;
  17. }
  18. return a;
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement