Guest User

Untitled

a guest
Apr 19th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. public bool puja (int puja){
  2. if (puja>this.getPrecioMinimo())
  3. {
  4. Articulo.puja(puja);
  5. if (puja>=this.precioInmediato)
  6. {
  7. this.cierraSubasta();
  8. }
  9. return (true);
  10. }
  11. else{
  12. return (false);
  13. }
  14. }
Add Comment
Please, Sign In to add comment