Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. public class Urna {
  2.  
  3. int n_blancas = 0;
  4. int n_negras = 0;
  5.  
  6. public Urna();
  7.  
  8.  
  9. public void introducirBola(Color c) {
  10. }
  11.  
  12. public Color sacarBola() {
  13. }
  14.  
  15. public boolean estaVacia {
  16. }
  17.  
  18. public int totalBolas() {
  19.  
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement