Created
October 11, 2013 00:01
-
-
Save anthonycvella/6927604 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* To change this template, choose Tools | Templates | |
* and open the template in the editor. | |
*/ | |
/** | |
* | |
* @author Anthony | |
*/ | |
public class BankAccountDriver { | |
/** | |
* @param args the command line arguments | |
*/ | |
public static void main(String[] args) { | |
// Declarations | |
BankAccount MatthewsAccount = new BankAccount(1000.00); | |
BankAccount MichaelsAccount = new BankAccount(1000.00); | |
BankAccount BriansAccount = new BankAccount(1000.00); | |
BankAccount KalemsAccount = new BankAccount(1000.00); | |
BankAccount AnthonysAccount = new BankAccount(1000.00); | |
BankAccount ThomasAccount = new BankAccount(1000.00); | |
double depositAmount = 100.00; | |
System.out.println("Account balance: " + MatthewsAccount.getBalance()); | |
for (int i = 0; i <= 6; i++) { | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment