Advertisement
CMatchelo

Untitled

Dec 13th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1.  
  2. public class Espectador {
  3.  
  4. int id;
  5. int pref;
  6. public Espectador(int id, int pref) {
  7. super();
  8. this.id = id;
  9. if (pref==0 || pref==1)
  10. this.pref = pref;
  11. else
  12. this.pref = 2;
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement