//minimum balance(overdraft) // constructor the_balance = the_min_balance = 0.00; //initialise new account balance
the_balance = the_balance + money;
return the_balance;
if (the_balance - money >= the_min_balance) { the_balance = the_balance - money; return money; } else { return 0.00; }