Waiting for answer This question has not been answered yet. You can hire a professional tutor to get the answer.

QUESTION

(10 points) (The Account class) Design a class named Account that contains: A private int data field named id for the account (default 0). A private...

import java.util.Date;import java.util.Scanner; { () {Account account = Account(, );account.setAnnualInterestRate();account.withdraw();account.deposit();Account Statement");System..println();System..println( + account.getId());System..println( + account.getDateCreated());System..printf(, account.getBalance());System..printf(,account.getMonthlyInterest());}} { id; balance; annualInterestRate; Date dateCreated;Account() {id = ;balance = ;annualInterestRate = ;dateCreated = Date();}Account( i, b) {id = i;balance = b;dateCreated = Date();} ( i) {id = i;} () { id;} ( b) {balance = b;} () { balance;} ( a) {annualInterestRate = a;} () { annualInterestRate;} Date () { dateCreated;} () { balance * getAnnualInterestRate() / ;} ( amount) {balance -= amount; (amount < ) balance = ;} ( amount) {balance += amount;}}

I'm having trouble running this code

9.(10 points) (The Account class) Design a class named Account that contains:. A private int data field named id for the account (default 0).. A private double data field named balance for the account (default 0).A private double data field named annualInterestRate that stores thecurrent interest rate (default O). Assume all accounts have the same interest rate.. A private Date data field named dateCreated that stores the date whenthe account was created.. A no-arg constructor that creates a default account.A constructor that creates an account with the specified id and initial balance.The accessor and mutator methods for id, balance, andannualInterestRate.The accessor method for dateCreated.A method named getMonthlyInterestRate () that returns the monthlyinterest rate.A method named getMonthlyInterest () that returns the monthlyinterest.A method named withdraw that withdraws a specified amount from theaccount.. A method named deposit that deposits a specified amount to the account.Draw the UML diagram for the class and then implement the class. (Hint: Themethod getMonthlyInterest () is to return monthly interest, not the interestrate. Monthly interest is balancemonthlyInterestRate.monthlyInterestRate is annualInterestRate / 12. Note thatannualInterestRate is a percentage, e.g., like 4.5%. You need to divide it by100.)Write a test program that creates an Account object with an account ID of 1122,a balance of $20,000, and an annual interest rate of 4.5%. Use the withdrawmethod to withdraw $2,500, use the deposit method to deposit $3,000, and printthe balance, the monthly interest, and the date when this account was created.
Show more
LEARN MORE EFFECTIVELY AND GET BETTER GRADES!
Ask a Question