Advertisement
Abel_Martinez

Untitled

Feb 28th, 2013
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.17 KB | None | 0 0
  1. void TVASO::echarLiquido(double volumen)
  2. {
  3.     mi_cantidadLiquido+=volumen;
  4.     if(mi_cantidadLiquido>mi_capacidad)
  5.     {
  6.         mi_cantidadLiquido=mi_capacidad;
  7.     }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement