9.7 (The Account class) Design a clasS named Account that contains: I A private int data field named id for the account (default 0). I A private double data field named balance for the account (default 0). IA private double data field named annualInterestRate that stores the current interest rate (default 0). Assume all accounts have the same interest rate. A private Date data field named dateCreated that stores the date when the account was created. A no-arg constructor that creates a default account. I A constructor that creates an account with the specified id and initial balance. 1 The accessorandmutatormethodsfor id,balance, andannualInterestRate. 1 The accessor method for dateCreated. I A method named getMonthlyInterestRate() that returns the monthly interest rate. I A method named getMonthlyInterest () that returns the monthly interest. IA method named withdraw that withdraws a specified amount from the account. IA method named deposit that denosits a specified amount to the account
9.7 (The Account class) Design a clasS named Account that contains: I A private int data field named id for the account (default 0). I A private double data field named balance for the account (default 0). IA private double data field named annualInterestRate that stores the current interest rate (default 0). Assume all accounts have the same interest rate. A private Date data field named dateCreated that stores the date when the account was created. A no-arg constructor that creates a default account. I A constructor that creates an account with the specified id and initial balance. 1 The accessorandmutatormethodsfor id,balance, andannualInterestRate. 1 The accessor method for dateCreated. I A method named getMonthlyInterestRate() that returns the monthly interest rate. I A method named getMonthlyInterest () that returns the monthly interest. IA method named withdraw that withdraws a specified amount from the account. IA method named deposit that denosits a specified amount to the account
Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
Related questions
Question
Expert Solution
Step 1
import java.util.Date; | |
public class Account { | |
// Data fields | |
private int id; | |
private double balance; | |
private static double annualInterestRate; | |
private Date dateCreated; | |
// Constructors | |
/** Creates a default account */ | |
Account() { | |
this(0, 0); | |
} | |
/** Creates an account with the specified id and initial balance */ | |
Account(int id, double balance) { | |
this.id = id; | |
this.balance = balance; | |
annualInterestRate = 0; | |
dateCreated = new Date(); | |
} | |
// Mutator methods | |
/** Set id */ | |
public void setId(int id) { | |
this.id = id; | |
} | |
/** Set balance */ | |
public void setBalance(double balance) { | |
this.balance = balance; | |
} | |
/** Set annualInterestRate */ | |
public void setAnnualInterestRate(double annualInterestRate) { | |
this.annualInterestRate = annualInterestRate; | |
} | |
// Accessor methods | |
/** Return id */ | |
public int getId() { | |
return id; | |
} | |
/** Return balance */ | |
public double getBalance() { | |
return balance; | |
} | |
/** Return annualInterestRate */ | |
public double getAnnualInterestRate() { | |
return annualInterestRate; | |
} | |
/** Return dateCreated */ | |
public String getDateCreated() { | |
return dateCreated.toString(); | |
} | |
/** Return monthly interest rate */ | |
public double getMonthlyInterestRate() { | |
return annualInterestRate / 12; | |
} | |
// Methods | |
/** Return monthly interest */ | |
public double getMonthlyInterest() { | |
return balance * (getMonthlyInterestRate() / 100); | |
} | |
/** Decrease balance by amount */ | |
public void withdraw(double amount) { | |
balance -= amount; | |
} | |
/** Increase balance by amount */ | |
public void deposit(double amount) { | |
balance += amount; | |
} | |
/** Return a String decription of Account class */ | |
public String toString() { | |
return "\nAccount ID: " + id + "\nDate created: " + getDateCreated() | |
+ "\nBalance: $" + String.format("%.2f", balance) + | |
"\nMonthly interest: $" + String.format("%.2f", getMonthlyInterest()); | |
} | |
} |
Trending now
This is a popular solution!
Step by step
Solved in 2 steps
Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Recommended textbooks for you
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education