Waiting for answer This question has not been answered yet. You can hire a professional tutor to get the answer.

QUESTION

16.00 Normal 0 false false false EN-ZA X-NONE X-NONE /* Style Definitions */ table.MsoNormalTable {mso-style-name:"Table Normal"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow

16.00 Normal 0 false false false EN-ZA X-NONE X-NONE /* Style Definitions */ table.MsoNormalTable {mso-style-name:"Table Normal"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-priority:99; mso-style-parent:""; mso-padding-alt:0cm 5.4pt 0cm 5.4pt; mso-para-margin-top:0cm; mso-para-margin-right:0cm; mso-para-margin-bottom:8.0pt; mso-para-margin-left:0cm; line-height:107%; mso-pagination:widow-orphan; font-size:11.0pt; font-family:"Calibri",sans-serif; mso-ascii-font-family:Calibri; mso-ascii-theme-font:minor-latin; mso-hansi-font-family:Calibri; mso-hansi-theme-font:minor-latin; mso-bidi-font-family:"Times New Roman"; mso-bidi-theme-font:minor-bidi; mso-fareast-language:EN-US;}

 (C++ program)

1

 Class definition

Define a 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, check/savings/business)

·         Balance (double)

·         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.

2

 Implement all appropriate member functions of a class.

3

 write a program that illustrate how to use your class. Your program should have the following:

·         Declare an array of 20 components of type bankAccount to process up to 20 customers.

·         void menu() – helps the user to select if the customer is new or if they already exist. Furthermore, it prints the customer’s data or exits the program.

·         Use a switch statement which uses the value from menu() as an expression to call the following user-defined functions:

o   void addCustomber() – this function enters/adds the customer details. You may call one mutator function (setter) of a class in this function.

o   void processCustomer() – this function calls the search() function. It also calls and uses subMenu() function as an update and priming read. Furthermore, it uses the switch statement to call the other three class member functions to process the deposit, withdrawal, and print.

o   void printCustomersData() – print all information of the customers. 

·         void submenu() – help the user to select between making a deposit, withdrawal, checking balance or exiting the submenu.

·         int search() – search the customer’s details by using the customer’s account number. You may call one accessor function (getter) of a class in this function.

·         main() function – this has the switch statement to call addCustomber(), processCustomer() and printCustomersData().

Hint: The listed user-defined functions are not the same as the class member functions. However, the user-defined functions can call the class member functions. The array that stored 20 components should be used as a parameter to access and process the customers’ details. Your

Show more
LEARN MORE EFFECTIVELY AND GET BETTER GRADES!
Ask a Question