Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //no need to import BankAccount because it's in the same class
- public class BankAccountTester {
- public static void main(String[] args) {
- BankAccount exampleAccount = new BankAccount();
- exampleAccount.Deposit(1000.00);
- exampleAccount.Withdraw(500.00);
- exampleAccount.Withdraw(400.00);
- System.out.println(exampleAccount.GetBalance());
- System.out.println("The expected balance is 1100.00");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment