Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //no need to import BankAccount because it's in the same package
- public class BankAccountTester {
- public static void main(String[] args) {
- BankAccount momsSavings = new BankAccount(1000.00);
- momsSavings.addInterest(10);
- System.out.println(momsSavings.GetBalance());
- }
- }
Add Comment
Please, Sign In to add comment