AmbushedRaccoon

Bank Interview

Sep 26th, 2025
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.22 KB | None | 0 0
  1.     class Bank
  2.     {
  3.     public:
  4.         Bank(int count);
  5.         void deposit(int accountIndex, int amount);
  6.         void withdraw(int accountIndex, int amount);
  7.         double getBalance(int accountIndex) const;
  8.     };
Advertisement
Add Comment
Please, Sign In to add comment