Question: Project 9-2: Account Balance Calculator Create in Java Create an application that calculates and displays the starting and ending monthly balances for a checking account
Project 9-2: Account Balance Calculator
Create in Java
Create an application that calculates and displays the starting and ending monthly balances for a checking account and a savings account. Console Welcome to the Account application
Starting Balances Checking: $1,000.00 Savings: $1,000.00
Enter the transactions for the month
Withdrawal or deposit? (w/d): w Checking or savings? (c/s): c Amount?: 500
Continue? (y/n): y
Withdrawal or deposit? (w/d): d Checking or savings? (c/s): s Amount?: 200
Continue? (y/n): n
Monthly Payments and Fees Checking fee: $1.00 Savings interest payment: $12.00
Final Balances Checking: $499.00 Savings: $1,212.00 Project 9-2: Account Balance Calculator (continued) Specifications Create interfaces named Depositable, Withdrawable, and Balanceable that specify the methods that can be used to work with accounts. The Depositable interface should include this method: void deposit(double amount) The Withdrawable interface should include this method: void withdraw(double amount) And the Balanceable interface should include these methods: double getBalance() void setBalance(double amount) Create a class named Account that implements all three of these interfaces. This class should include an instance variable for the balance. Create a class named CheckingAccount that inherits the Account class. This class should include an instance variable for the monthly fee thats initialized to the value thats passed to the constructor. This class should also include methods that subtract the monthly fee from the account balance and return the monthly fee. Create a class named SavingsAccount that inherits the Account class. This class should include instance variables for the monthly interest rate and the monthly interest payment. The monthly interest rate should be initialized to the value thats passed to the constructor. The monthly interest payment should be calculated by a method that applies the payment to the account balance. This class should also include a method that returns the monthly interest payment. Create a class named AccountBalanceApp that uses these objects to process and display deposits and withdrawals. Use the Console class presented in chapter 7 or an enhanced version of it to get and validate the users entries. Dont allow the user to withdraw more than the current balance of an account.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
