Advertisement
uopspop

account.h

Apr 13th, 2016
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.17 KB | None | 0 0
  1. #include <iostream>
  2. class Account {
  3.  
  4. public:
  5.     Account(int);
  6.     void credit(int);
  7.     void debit(int);
  8.     int getBalance();
  9.  
  10.  
  11. private:
  12.     int balance = 0;
  13. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement