Advertisement
adventuretimeh

contocorrente.h

Jan 25th, 2021
872
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.38 KB | None | 0 0
  1. #ifndef "contocorrente.h"
  2. #define "contocorrente.h"
  3. #include <string>
  4. using namespace std;
  5. class contocorrente{
  6. string codice;
  7. string nome;
  8. string cognome;
  9. double capitale;
  10. string generacodice(){ return "0000"};
  11. public:
  12. contocorrente(string& n, string& c );
  13. void deposito(double d);
  14. bool prelievo(double p)
  15. double saldo();
  16. string getnominativo();
  17. }
  18. #endif contocorrente.h
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement