#include #include "account.h" void main(void) { account a(50.45), b; // a has $50.45, b has $0.0 initially a.deposit(30); cout << " account a now has $" << a.getBalance() << endl; b.deposit(130); cout << " account a now has $" << b.getBalance() << endl; }