Your Perfect Assignment is Just a Click Away

We Write Custom Academic Papers

100% Original, Plagiarism Free, Customized to your instructions!

glass
pen
clip
papers
heaphones

Customers Bank Account Program

Customers Bank Account Program

Description

You will be writing a program for a local bank that allows them to create objects representing a customer’s bank account. Create the following two classes:

  • Transaction: a class representing a customer’s single transaction at the bank:
    • Member Variables:
      • amount: An int representing how much the transaction was for.
      • isWithdrawal: A bool: true if the transaction was a withdrawal and false if it was a deposit.
    • Member Functions
      • Constructor: Requires the client to pass values for both member variables.
      • print: Prints this transaction. For example, “Withdrawal: -$5” or “Deposit: +$15”
  • Account: a class representing a customer’s bank account:
    • Member Variables:
      • balance: Represents how much money is in the account.
      • transactions: A vector of pointers to Transaction objects. When the user makes a deposit or withdrawal, a Transaction object will be create and a pointer to it will be added to this vector.
    • Member Functions:
      • Constructor: Requires the client to pass a value for the starting account balance. If this amount is less than 0, print a message explaining the error and then stop the program with the following command: exit(1);
      • withdraw: Allows the user to pass an amount to withdraw from the account. Returns true if successful and false otherwise.
        • If the amount would make ‘balance’ less than 0, do not perform the withdrawal. Simply print an error message and return false.
        • Otherwise, subtract the amount from ‘balance’, add a new Transaction with the given data to ‘transactions’, and return true.
      • Deposit: Allows the user to pass an amount to deposit to the account. Add the given amount to ‘balance’ and add a new Transaction to ‘transactions’ with the given data.
      • printTransactions: Loops through the ‘transactions’ vector printing each Transaction one at a time (by calling each object’s ‘print’ function)
      • getBalance: Returns the current balance in the account.

In your main function on Source.cpp, create an Account object with a starting balance of 0. Demonstrate each of the functions being called (for example, perform a few deposits, a few withdrawals, print the transactions, and then print the balance). This can all be hardcoded: there is no need for user input.

Submit: Transaction.cpp, Transaction.h, Source.cpp, Account.cpp, and Account.h

Our Service Charter

1. Professional & Expert Writers: Writing Expert only hires the best. Our writers are specially selected and recruited, after which they undergo further training to perfect their skills for specialization purposes. Moreover, our writers are holders of masters and Ph.D. degrees. They have impressive academic records, besides being native English speakers.

2. Top Quality Papers: Our customers are always guaranteed papers that exceed their expectations. All our writers have +5 years of experience. This implies that all papers are written by individuals who are experts in their fields. In addition, the quality team reviews all the papers before sending them to the customers.

3. Plagiarism-Free Papers: All papers provided by Writing Expert are written from scratch. Appropriate referencing and citation of key information are followed. Plagiarism checkers are used by the Quality assurance team and our editors just to double-check that there are no instances of plagiarism.

4. Timely Delivery: Time wasted is equivalent to a failed dedication and commitment. Writing Expert is known for timely delivery of any pending customer orders. Customers are well informed of the progress of their papers to ensure they keep track of what the writer is providing before the final draft is sent for grading.

5. Affordable Prices: Our prices are fairly structured to fit all groups. Any customer willing to place their assignments with us can do so at very affordable prices. In addition, our customers enjoy regular discounts and bonuses.

6. 24/7 Customer Support: At Writing Expert, we have put in place a team of experts who answer all customer inquiries promptly. The best part is the ever-availability of the team. Customers can make inquiries anytime.

Our Service Charter

1. Professional & Expert Writers: Writing Expert only hires the best. Our writers are specially selected and recruited, after which they undergo further training to perfect their skills for specialization purposes. Moreover, our writers are holders of masters and Ph.D. degrees. They have impressive academic records, besides being native English speakers.

2. Top Quality Papers: Our customers are always guaranteed papers that exceed their expectations. All our writers have +5 years of experience. This implies that all papers are written by individuals who are experts in their fields. In addition, the quality team reviews all the papers before sending them to the customers.

3. Plagiarism-Free Papers: All papers provided by Writing Expert are written from scratch. Appropriate referencing and citation of key information are followed. Plagiarism checkers are used by the Quality assurance team and our editors just to double-check that there are no instances of plagiarism.

4. Timely Delivery: Time wasted is equivalent to a failed dedication and commitment. Writing Expert is known for timely delivery of any pending customer orders. Customers are well informed of the progress of their papers to ensure they keep track of what the writer is providing before the final draft is sent for grading.

5. Affordable Prices: Our prices are fairly structured to fit all groups. Any customer willing to place their assignments with us can do so at very affordable prices. In addition, our customers enjoy regular discounts and bonuses.

6. 24/7 Customer Support: At Writing Expert, we have put in place a team of experts who answer all customer inquiries promptly. The best part is the ever-availability of the team. Customers can make inquiries anytime.