Advertisement
Guest User

Untitled

a guest
Oct 24th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. class Usuario
  2. {
  3. private int puntuacion;
  4.  
  5. public Usuario()
  6. {
  7. puntuacion = 0;
  8. }
  9. public void colocarPuntos(int puntos)
  10. {
  11. puntuacion=puntuacion+puntos;
  12. }
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement