9.19 LAB: BankAccount class (EO)   Build a class called BankAccount that manages checking and savings accounts. The class has three private member fields: a customer name (String), the customer's savings account balance (double), and the customer's checking account balance (double). Implement the following Constructor and instance methods: public BankAccount(String newName, double amt1, double amt2) - set the customer name to parameter newName, set the checking account balance to parameter amt1 and set the savings account balance to parameter amt2. (amt stands for amount) public void setName(String newName) - set the customer name public String getName() - return the customer name public void setChecking(double amt) - set the checking account balance to parameter amt public double getChecking() - return the checking account balance public void setSavings(double amt) - set the savings account balance to parameter amt public double getSavings() - return the savings account balance public void depositChecking(double amt) - add parameter amt to the checking account balance (only if positive) public void depositSavings(double amt) - add parameter amt to the savings account balance (only if positive) public void withdrawChecking(double amt) - subtract parameter amt from the checking account balance (only if positive) public void withdrawSavings(double amt) - subtract parameter amt from the savings account balance (only if positive) public void transferToSavings(double amt) - subtract parameter amt from the checking account balance and add to the savings account balance (only if positive) BankAccount.java public class BankAccount {    // TODO: Build BankAccount class with methods listed above        /* Type your code here. */         // main     public static void main(String args[]) {         BankAccount account = new BankAccount("Mickey", 500.00, 1000.00);         account.setChecking(500);         account.setSavings(500);         account.withdrawSavings(100);         account.withdrawChecking(100);         account.transferToSavings(300);         System.out.println(account.getName()); // Expected Mickey         System.out.printf("$%.2f\n", account.getChecking()); // Expected 100.0         System.out.printf("$%.2f\n", account.getSavings()); // Expected 700.0     }  }

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
icon
Related questions
Question

9.19 LAB: BankAccount class (EO)

 

Build a class called BankAccount that manages checking and savings accounts. The class has three private member fields: a customer name (String), the customer's savings account balance (double), and the customer's checking account balance (double).

Implement the following Constructor and instance methods:

  • public BankAccount(String newName, double amt1, double amt2) - set the customer name to parameter newName, set the checking account balance to parameter amt1 and set the savings account balance to parameter amt2. (amt stands for amount)
  • public void setName(String newName) - set the customer name
  • public String getName() - return the customer name
  • public void setChecking(double amt) - set the checking account balance to parameter amt
  • public double getChecking() - return the checking account balance
  • public void setSavings(double amt) - set the savings account balance to parameter amt
  • public double getSavings() - return the savings account balance
  • public void depositChecking(double amt) - add parameter amt to the checking account balance (only if positive)
  • public void depositSavings(double amt) - add parameter amt to the savings account balance (only if positive)
  • public void withdrawChecking(double amt) - subtract parameter amt from the checking account balance (only if positive)
  • public void withdrawSavings(double amt) - subtract parameter amt from the savings account balance (only if positive)
  • public void transferToSavings(double amt) - subtract parameter amt from the checking account balance and add to the savings account balance (only if positive)

BankAccount.java

public class BankAccount {
   // TODO: Build BankAccount class with methods listed above
   
   /* Type your code here. */ 
   

   // main
    public static void main(String args[]) {
        BankAccount account = new BankAccount("Mickey", 500.00, 1000.00);
        account.setChecking(500);
        account.setSavings(500);
        account.withdrawSavings(100);
        account.withdrawChecking(100);
        account.transferToSavings(300);

        System.out.println(account.getName()); // Expected Mickey
        System.out.printf("$%.2f\n", account.getChecking()); // Expected 100.0
        System.out.printf("$%.2f\n", account.getSavings()); // Expected 700.0
    } 
}

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Class
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.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
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)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education