Question: Please write a C++ program in visual studio with the follow instruction Define the class bankAccount to implement the basic properties of a bank account.

Please write a C++ program in visual studio with the follow instruction

Please write a C++ program in visual studio with the follow instruction

Define the class bankAccount to implement the basic properties of a bank account. An object of this class should store the following data: Account holder's name( string), account number( int), account type( string checking/saving), balance( double), and interest rate ( double ). (Store interest rate as a decimal number.) Add appropriate member functions to manipulate an object. Use a static member in the class to automatically assign account numbers. Also, declare an array of 10 components of type bankAccount to process up to 10 customers and write a program to illustrate how to use your class Example output is shown below: 1: Enter 1 to add a new custoner 2: Enter 2 for an extsting custoner 3: Enter 3 to print custoners data 9: Enter 9 to exit the progran Enter custoner's nane: Dave Brown Enter account type (checking/savings): checking Enter anount to be deposited to open account: 10000 Enter interest rate (as a percent): .01 1: Enter 1 to add a new custoner 2: Enter 2 for an existing custoner 3: Enter 3 to print custoners data 9: Enter 9 to exit the progran Account Holder Name: Dave Brown Account Type: checking Account Number: 1100 Balance: $10000.00 Interest Rate: ?.01% 1: Enter 1 to add a new custoner 2: Enter 2 for an existing custoner 3: Enter 3 to print custoners data 9: Enter 9 to exit the progran

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!