Guest User

Untitled

a guest
Mar 19th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. Numero Numero::operator +(int numeros) const
  2. {
  3. Numero salida(*this);
  4. salida = salida + (numeros);
  5. return salida;
  6. }
  7.  
  8. Numero salida(*this);
Add Comment
Please, Sign In to add comment