hello people!!
im new here!!
please!! help me to solve my problem in programming!! this is the problem:
USING C++
*array of class, use struct
*create a dynamic array of customers account record with the following attributes:
a) account number
b)last name
c)firstname
d)middle initial
e)account balance
f)status(o-open/ c-close)
it will perform the following transactions:
NEW ACCOUNT
* Account Number is generated randomly & must be unique!!!
* last, first name, MI & Acct balance should be the users input. balance should not be less than 5000.00
* status is open(O) if balance is above 100.00 otherwise status is closed(C).
DEPOSIT
* last, first, MI, Acct bal, status are displayed if account num is found otherwise display an appropriate message.
*amount of deposit is an input & should not be less than 1.00 deposit should be added to the current balance.
WITHDRAW
* Account number is a input.
* last, fist, MI, Acct bal, status are displayed if account num is found otherwise display an appropriate message.
* Amount withdrawn is an input & should not be less than 1.00. Withdrawn amount should be reflected to the balance.
INQUIRY BY ACCOUNT NUMBER
* account num is an input. if found display customers information else display the corresponding message.
INQUIRY BY LAST NAME
* inquire the bank account of the customer using last name!!(it will display the information of the customer!!)
Note: Result should be in ascending order using Firstname as a key.
SHOW ALL
* show the customers info!!
Note: Result should be in ascending order using Firstname as a key.
i need your help a lot!!