// File: exercise5.cpp
// More complex class example

#include <iostream>
#include <vector>
using namespace std;

// Define a class representing a Bank Account containing:
// Constructor
// Method to deposit money
// Method to withdraw money
// Method to print account details


int main() {
    // Create a bank account object
    
    // Perform some transactions
    
    // Print account statement
    
    return 0;
}