Question: LAB 13.5 Student Generated Code Assignments Exercise 1: Give a C++ class declaration called savingsAccount with the following information: Operations (Member Functions) 1. Open account

LAB 13.5 Student Generated Code Assignments Exercise 1: Give a C++ class declaration called savingsAccount with the following information: Operations (Member Functions) 1. Open account (with an initial deposit). This is called to put initial values in dollars and cents. 2. Make a deposit. A function that will add value to dollars and cents 3. Make a withdrawal. A function that will subtract values from dollars and cents. 4. Show current balance. A function that will print dollars and cents. Data (Member Data) 1. dollars 2. cents Give the implementation code for all the member functions. NOTE: You must perform normalization on cents. This means that if cents is 100 or more, it must increment dollars by the appropriate amount. Example: if cents is 234, then dollars must be increased by 2 and cents reduced to 34. Write code that will create an object called bank. The code will then initially place $200.50 in the account. The code will deposit $40.50 and then withdraw $100.98. It will print out the final value of dollars and cente, The following output should be produced: Dollars 140 cents - 2 Part 2Change the program to allow the user to input the initial values, deposit and withdrawal LAB 13.5 Student Generated Code Assignments Exercise 1: Give a C++ class declaration called savingsAccount with the following information: Operations (Member Functions) 1. Open account (with an initial deposit). This is called to put initial values in dollars and cents. 2. Make a deposit. A function that will add value to dollars and cents 3. Make a withdrawal. A function that will subtract values from dollars and cents. 4. Show current balance. A function that will print dollars and cents. Data (Member Data) 1. dollars 2. cents Give the implementation code for all the member functions. NOTE: You must perform normalization on cents. This means that if cents is 100 or more, it must increment dollars by the appropriate amount. Example: if cents is 234, then dollars must be increased by 2 and cents reduced to 34. Write code that will create an object called bank. The code will then initially place $200.50 in the account. The code will deposit $40.50 and then withdraw $100.98. It will print out the final value of dollars and cente, The following output should be produced: Dollars 140 cents - 2 Part 2Change the program to allow the user to input the initial values, deposit and withdrawal
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
