I need help with creating an application that calculates and displays the starting and ending monthly balances for a checking account and a savings account.
Console
Welcome to the Account application
Starting Balances
Checking: $1,000.00
Savings: $1,000.00
Enter the transactions for the month
Withdrawal or deposit? (w/d): w
Checking or savings? (c/s): c
Amount?: 500
Continue? (y/n): y
Withdrawal or deposit? (w/d): d
Checking or savings? (c/s): s
Amount?: 200
Continue? (y/n): n
Monthly Payments and Fees
Checking fee: $1.00
Savings interest payment: $12.00
Final Balances
Checking: $499.00
Savings: $1,212.00
Project 9-2: Account Balance Calculator (continued)
Specifications
· Create interfaces named Depositable, Withdrawable, and Balanceable that specify the methods that can be used to work with accounts. The Depositable interface should include this method:
void deposit(double amount)
The Withdrawable interface should include this method:
void withdraw(double amount)
And the Balanceable interface should include these methods:
double getBalance()
void setBalance(double amount)
· I need to creat e a class named Account that implements all three of these interfaces. This class should include an instance variable for the balance.
· i need to creat e a class named CheckingAccount that inherits the Account class. This class should include an instance variable for the monthly fee that’s initialized to the value that’s passed to the constructor. This class should also include methods that subtract the monthly fee from the account balance and return the monthly fee.
· i need to creat e a class named SavingsAccount that inherits the Account class. This class should include instance variables for the monthly interest rate and the monthly interest payment. The monthly interest rate should be initialized to the value that’s passed to the constructor. The monthly interest payment should be calculated by a method that applies the payment to the account balance. This class should also include a method that returns the monthly interest payment.
· i need to creat e a class named AccountBalanceApp that uses these objects to process and display deposits and withdrawals.
· Use the Console class presented in chapter 7 or an enhanced version of it to get and validate the user’s entries. Don’t allow the user to withdraw more than the current balance of an account.
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
I Need Help With An Original Answer For His Question In C Please Instructions Bi
/in Uncategorized /by developerI need help with an original answer for his question in C++ please:
Instructions
Bianca is preparing special dishes for her daughter’s birthday.
It takes her a minutes to prepare the first dish, and each following dish takes b minutes longer than the previous dish. She has t minutes to prepare the dishes.
For example, if the first dish takes a = 10 minutes and b = 5, then the second dish will take 15 minutes, the third dish will take 20 minutes, and so on.
If she has 80 minutes to prepare the dishes, then she can prepare four dishes because 10 + 15 + 20 + 25 = 70.
Write a program that prompts the user to enter the values of a, b, and t, and outputs the number of dishes Bianca can prepare.
Thank you.
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
I Need Help With An Original Answer Please
/in Uncategorized /by developerI need help with an original answer please.
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
I Need Help With An Original Assignment Original Only Please I Would Prefer The
/in Uncategorized /by developerI need help with an Original/ Custom assignment, Original/ Custom as possible please. I would prefer the assignment to be completed in Python, or your best choice of Java or Ruby. Thank you.
Your software company was invited to provide a proposal for a company in Australia. You currently have the cost in US dollars and need to convert the prices to the Australian dollar.
Write a 2-part program using Ruby, Java®, or Python.
Part 1: Write a function to gather the following costs from the user:
Part 2: Write a function to convert the costs from United States dollar (USD) to Australian dollar (AUD). Note: Look up the current USD to AUD exchange rate to use in your function.
Test the program 3 times by providing different costs in USD.
Provide the code and take a screenshot of the output, then paste the screenshot(s) into a Microsoft® Word document.
Write a half-page response in the same Microsoft® Word document to address the following:
Review the readings for this week from Ruby on Rails Tutorial or the Pluralsight videos if you have additional questions on deploying Ruby applications.
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
I Need Help With An Original C Program For The Following Assignment Please See A
/in Uncategorized /by developerI need help with an original C++ Program for the following assignment, please see attachment, thank you.
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
I Need Help With An Original C Program Please See Attached File Thank You
/in Uncategorized /by developerI need help with an original C++ program, please see attached file. Thank you.
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
I Need Help With Assignment 3 4 Pmp 524 Stella
/in Uncategorized /by developerI need help with Assignment 3 & 4
PMP 524
STELLA
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
I Need Help With Capstone Evidence Based Paper The Topic For The Project Is Ethi
/in Uncategorized /by developerI need help with Capstone Evidence-based paper. The topic for the Project is Ethical Practice vs. Quality Care, and the focused topic is on Necrotizing enterocolitis (NEC) in Premature infants. I have attached the requirements Guidelines. Please, read the RUA Guidelines in its entirety, as this is for my final grade.
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
I Need Help With Chemistry Subject Is On Boyle S Law Charlies Law And Dalton S L
/in Uncategorized /by developerBoyle’s, Dalton, & Charles Law1. Given gas properties such as pressure, volume, and temperature, what would a graph look like forBoyle’s Law? for Charles’ Law? Be sure to label each.2. Imagine that you had a container that could easily change volume. Suppose that in the containeryou had a volume of 6.4 liters of oxygen gas at 1.0 atmospheres of pressure. If you wanted toincrease that pressure to 3.2 atmospheres, what volume would your container have to be?3. The Neon gas in a sign is cooled from 50. “C to 25″C. If the original volume of gas was 2.5 L, what isthe new volume?4. Now imagine that a helium balloon in the shape of Winnie the Pooh This placed in a pressurechamber. If Winnie has a volume of 22.4 liters and 1.00 atmospheres before the chamber isactivated, what the pressure pushing on Winnie when his volume is 3.45 liters?5. Jacques’ Charles was a French scientist who flew the first hot air balloon. When it crashed near avillage, the peasants were so scared of the “monster from the sky” that they attacked it withpitchforks. Charles barely escaped with his life. If Charles started with 250,000.0L of air at 22″C,what was the air temperature when the volume increased to 400,000.OL?
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
I Need Help With Creating An Application That Calculates And Displays The Starti
/in Uncategorized /by developerI need help with creating an application that calculates and displays the starting and ending monthly balances for a checking account and a savings account.
Console
Welcome to the Account application
Starting Balances
Checking: $1,000.00
Savings: $1,000.00
Enter the transactions for the month
Withdrawal or deposit? (w/d): w
Checking or savings? (c/s): c
Amount?: 500
Continue? (y/n): y
Withdrawal or deposit? (w/d): d
Checking or savings? (c/s): s
Amount?: 200
Continue? (y/n): n
Monthly Payments and Fees
Checking fee: $1.00
Savings interest payment: $12.00
Final Balances
Checking: $499.00
Savings: $1,212.00
Project 9-2: Account Balance Calculator (continued)
Specifications
· Create interfaces named Depositable, Withdrawable, and Balanceable that specify the methods that can be used to work with accounts. The Depositable interface should include this method:
void deposit(double amount)
The Withdrawable interface should include this method:
void withdraw(double amount)
And the Balanceable interface should include these methods:
double getBalance()
void setBalance(double amount)
· I need to creat e a class named Account that implements all three of these interfaces. This class should include an instance variable for the balance.
· i need to creat e a class named CheckingAccount that inherits the Account class. This class should include an instance variable for the monthly fee that’s initialized to the value that’s passed to the constructor. This class should also include methods that subtract the monthly fee from the account balance and return the monthly fee.
· i need to creat e a class named SavingsAccount that inherits the Account class. This class should include instance variables for the monthly interest rate and the monthly interest payment. The monthly interest rate should be initialized to the value that’s passed to the constructor. The monthly interest payment should be calculated by a method that applies the payment to the account balance. This class should also include a method that returns the monthly interest payment.
· i need to creat e a class named AccountBalanceApp that uses these objects to process and display deposits and withdrawals.
· Use the Console class presented in chapter 7 or an enhanced version of it to get and validate the user’s entries. Don’t allow the user to withdraw more than the current balance of an account.
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
I Need Help With Creating An Argument Essay With The Topic About The Differences
/in Uncategorized /by developerI need help with creating an argument essay with the topic about the differences between a Philippine born kid and a US born kid.
Introduction:Culture, grooming and tradition have a very important role to play in the formative years ofchildren. Family values, and ideals and peer influence especially the role of the family…
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"