#include "BankAccount3.h" #include using namespace std; int main() { BankAccount a("bob"), b("stu"); a.deposit(5000); cout << a.report() << endl; cout << b.report() << endl; b.deposit(50000); cout << a.report() << endl; cout << b.report() << endl; b.transfer(a, 40000); cout << a.report() << endl; cout << b.report() << endl; SavingsAccount c("Gilbert", 0.05); c.deposit(1000); cout << c.report() << endl; c.addInterest(); cout << c.report() << endl; }