Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

The program should start with an initial account balance, which you can set to any legitimate double value and be stored in a single balance

The program should start with an initial account balance, which you can set to any legitimate double value and be stored in a single balance variable. All output of currency values should include a leading dollar sign and use two decimal positions. Prompt the user with the following prompt (without the dashed lines) using an outer do loop. Enter the number of your desired transaction type. Balance Deposit Withdrawal Quit Enter choice: If a balance is requested (#1), the program should output: "Your current balance is $X.XX." where X.XX is the balance in the account, and then re-display the prompt and await the next transaction type. If a deposit is requested (#2), prompt the user to enter the amount of the deposit (use a double for this). Add the deposit amount to the initial balance and then print: "Your current balance is $X.XX" where X.XX is the balance after the deposit, and then re-display the prompt and await the next transaction type. If a withdrawal is requested (#3), prompt the user to enter the amount of the withdrawal (use a double for this). If the proposed withdrawal amount is less than or equal to the initial balance, print: Your current balance is $X.XX. where X.XX is the balance after the withdrawal, and then re-display the prompt and await the next transaction type. If the proposed withdrawal amount exceeds the balance, print: "Insufficient funds. Your current balance is $X.XX." where X.XX is the balance, and then re-display the prompt and await the next transaction type. If "Quit" is requested (#4), the program should print "Good-bye" and then exit the loop. If a number other than 1,2,3, or 4 is received, output "Invalid menu choice." and continue within the loop

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Databases And Information Systems 1 International Baltic Conference Dbandis 2020 Tallinn Estonia June 19 2020 Proceedings

Authors: Tarmo Robal ,Hele-Mai Haav ,Jaan Penjam ,Raimundas Matulevicius

1st Edition

303057671X, 978-3030576714

More Books

Students also viewed these Databases questions

Question

1. What are the pros and cons of diversity for an organisation?

Answered: 1 week ago

Question

1. Explain the concept of diversity and equality in the workplace.

Answered: 1 week ago