subject

Fill in the code for method toString, which should return a string containing the name, account number, and balance for the account. Fill in the code for method chargeFee, which should deduct a service fee from the account.
Modify chargeFee so that instead of returning void, it returns the new balance. Note that you will have to make changes in two places.
Fill in the code for method changeName which takes a string as a parameter and changes the name on the account to be that string.

Modify ManageAccounts so that it prints the balance after the calls to chargeFees. Instead of using the getBalance method like you did after the deposit and withdrawal, use the balance that is returned from the chargeFees method. You can either store it in a variable and then print the value of the variable, or embed the method call in a println statement.

//
// Account. java
//
// A bank account class with methods to deposit to, withdraw from,
// change the name on, charge a fee to, and print a summary of the account.
//

public class Account
{
private double balance;
private String name;
private long acctNum;

//
//Constructor -- initializes balance, owner, and account number
//
public Account(double initBal, String owner, long number)
{
balance = initBal;
name = owner;
acctNum = number;
}

//
// Checks to see if balance is sufficient for withdrawal.
// If so, decrements balance by amount; if not, prints message.
//
public void withdraw(double amount)
{
if (balance >= amount)
balance -= amount;
else
System. out. println("Insufficient funds");
}

//
// Adds deposit amount to balance.
//
public void deposit(double amount)
{
balance += amount;
}

//
// Returns balance.
//
public double getBalance()
{
return balance;
}

//
// Returns a string containing the name, account number, and balance.
//
public String toString()
{

}

//
// Deducts $10 service fee
//
public void chargeFee()
{

}

//
// Changes the name on the account
//
public void changeName(String newName)

{

}

}

//
// ManageAccounts. java
//
// Use Account class to create and manage Sally and Joe's
// bank accounts
//

public class ManageAccounts
{
public static void main(String[] args)
{
Account acct1, acct2;

//create account1 for Sally with $1000
acct1 = new Account(1000, "Sally", 1111);

//create account2 for Joe with $500

//deposit $100 to Joe's account

//print Joe's new balance (use getBalance())

//withdraw $50 from Sally's account

//print Sally's new balance (use getBalance())

//charge fees to both accounts

//change the name on Joe's account to Joseph

//print summary for both accounts

}
}

ansver
Answers: 1

Another question on Advanced Placement (AP)

question
Advanced Placement (AP), 23.06.2019 08:10
Free points + brainliest! answer this correctly and you shall receive! to obtain a class e license, you don’t need to a. be at least 16 years old b. complete a tlsae course c. pass the driving skills test d. be a u.s. citizen
Answers: 1
question
Advanced Placement (AP), 23.06.2019 09:30
Which statement describes absolute and apparent brightness? absolute brightness and apparent brightness are identical ways to describe the brightness of a star. absolute brightness and apparent brightness change with the distance from the star to the observer. absolute brightness depends on the distance from the star to the observer, whereas apparent brightness is always the same. absolute brightness is the actual amount of light produced by the star, whereas apparent brightness changes with distance from the observer.
Answers: 1
question
Advanced Placement (AP), 24.06.2019 05:00
Summarize deleon's advice to the strikers
Answers: 2
question
Advanced Placement (AP), 24.06.2019 09:40
2with a manual transmission, the speed of thevehicle determines
Answers: 3
You know the right answer?
Fill in the code for method toString, which should return a string containing the name, account numb...
Questions
question
Mathematics, 23.10.2021 22:20
question
History, 23.10.2021 22:20
question
English, 23.10.2021 22:20
Questions on the website: 13722361