My approach would be as follows:
1. I'd create an bank account interface with the two methods; withdraw and deposit:


public interface BankAccount {

private double bal;

public void...