// Classes.cpp - understanding basics of classes and OOP in c++ #include #include #include "Account.h" using namespace std; int main() { Account a1; a1.Deposit(90); cout << "After depositing £90" << endl; for (auto s : a1.Report()) { cout << s << endl; } a1.Withdraw(50); cout << "After withdrawing £50" << endl; for (auto s : a1.Report()) { cout << s << endl; } return 0; }