Guest User

Untitled

a guest
Apr 25th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. ifndef _KONTO_
  2. #define _KONTO_
  3. #include <iostream>
  4. #include <string>
  5. using namespace std;
  6.  
  7. class Konto
  8. {
  9. private:
  10. string name;
  11. unsigned long nr;
  12. double stand;
  13.  
  14. public:
  15. bool init (const string&, unsigned long, double);
  16. void display();
  17. };
  18. #endif // _KONTO_
Add Comment
Please, Sign In to add comment