THIS NEEDS TO BE DONE IN JAVA Modify the Account class to provide a debit method that withdraws money from an Account.  Ensure that the debit amount does not exceed the Account's balance.  If it does, the balance should be left unchanged and the method should print out a message indicating "Debit amount exceeded amount balance." Modify class AccountTest to test method debit.  Below are links to the Account and AccountTest programs. //This is for the account class public class Account { private String name; //instance variable private double balance; //instance variable //Account constructor that receives two parameters public Account(String name, double balance){ this.name = name; //assing name to instance varialbe name //validate that the balance is greater than 0.0; if it's not, //instance varisble balance keeps its default initial value of 0.0 if (balance > 0.0){ //if the balance is valaid this.balance = balance; //assign it to instance variable balance } } //method that deposits (adds) only a valid amount to the balance public void deposit (double depositAmount){ if (depositAmount > 0.0) { balance = balance + depositAmount; //add it to the balance } } //method returns the account balance public double getBalance(){ return balance; } //method that sets the name public void setName(String name){ this.name = name; } //method that returns the name public String getName(){ return name; } }   //This is for the account test   public class AccountTest { /** * @param args the command line arguments */ public static void main(String[] args) { //create two Account objects Account account1 = new Account("Jane Green", 50.00); Account account2 = new Account("John Blue", -7.53); //display initial balance of each object System.out.printf("%s balance: $%.2f%n", account1.getName(), account1.getBalance()); System.out.printf("%s balance: $%.2f%n", account2.getName(), account2.getBalance()); //create a Scanner to obtain input from the command window Scanner input = new Scanner(System.in); //prompt the user to input a deposit amount System.out.print("Enter deposit amount for account1: "); double depositAmount = input.nextDouble(); //obtain user input System.out.printf("%nadding %.2f to account1 balance %n%n", depositAmount); account1.deposit(depositAmount); //add to account1's balance //display balances System.out.printf("%s balance: $%.2f%n", account1.getName(), account1.getBalance()); System.out.printf("%s balance: $%.2f%n", account2.getName(), account2.getBalance()); //prompt to input a deposit for account2 System.out.print("Enter deposit amount for account2: "); depositAmount = input.nextDouble(); //obtain user input System.out.printf("%nadding %.2f to account2 balance%n%n", depositAmount); //add to the account2 balance account2.deposit(depositAmount); //display balances System.out.printf("%s balance: $%.2f%n", account1.getName(), account1.getBalance()); System.out.printf("%s balance: $%.2f%n", account2.getName(), account2.getBalance()); }

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

THIS NEEDS TO BE DONE IN JAVA

Modify the Account class to provide a debit method that withdraws money from an Account.  Ensure that the debit amount does not exceed the Account's balance.  If it does, the balance should be left unchanged and the method should print out a message indicating "Debit amount exceeded amount balance." Modify class AccountTest to test method debit.  Below are links to the Account and AccountTest programs.

//This is for the account class

public class Account {
private String name; //instance variable
private double balance; //instance variable
//Account constructor that receives two parameters
public Account(String name, double balance){
this.name = name; //assing name to instance varialbe name
//validate that the balance is greater than 0.0; if it's not,
//instance varisble balance keeps its default initial value of 0.0
if (balance > 0.0){ //if the balance is valaid
this.balance = balance; //assign it to instance variable balance
}
}
//method that deposits (adds) only a valid amount to the balance
public void deposit (double depositAmount){
if (depositAmount > 0.0) {
balance = balance + depositAmount; //add it to the balance
}
}
//method returns the account balance
public double getBalance(){
return balance;
}
//method that sets the name
public void setName(String name){
this.name = name;
}
//method that returns the name
public String getName(){
return name;
}
}
 
//This is for the account test
 
public class AccountTest {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
//create two Account objects
Account account1 = new Account("Jane Green", 50.00);
Account account2 = new Account("John Blue", -7.53);
//display initial balance of each object
System.out.printf("%s balance: $%.2f%n", account1.getName(),
account1.getBalance());
System.out.printf("%s balance: $%.2f%n", account2.getName(),
account2.getBalance());
//create a Scanner to obtain input from the command window
Scanner input = new Scanner(System.in);
//prompt the user to input a deposit amount
System.out.print("Enter deposit amount for account1: ");
double depositAmount = input.nextDouble(); //obtain user input
System.out.printf("%nadding %.2f to account1 balance %n%n",
depositAmount);
account1.deposit(depositAmount); //add to account1's balance
//display balances
System.out.printf("%s balance: $%.2f%n",
account1.getName(), account1.getBalance());
System.out.printf("%s balance: $%.2f%n",
account2.getName(), account2.getBalance());
//prompt to input a deposit for account2
System.out.print("Enter deposit amount for account2: ");
depositAmount = input.nextDouble(); //obtain user input
System.out.printf("%nadding %.2f to account2 balance%n%n",
depositAmount);
//add to the account2 balance
account2.deposit(depositAmount);
//display balances
System.out.printf("%s balance: $%.2f%n",
account1.getName(), account1.getBalance());
System.out.printf("%s balance: $%.2f%n",
account2.getName(), account2.getBalance());
}
 
 
 
Expert Solution
steps

Step by step

Solved in 6 steps with 1 images

Blurred answer
Knowledge Booster
Function Calling
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