You will be writing a program for a local bank that allows them to create objects repres 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 • Member Functions

Programming Logic & Design Comprehensive
9th Edition
ISBN:9781337669405
Author:FARRELL
Publisher:FARRELL
Chapter11: More Object-oriented Programming Concepts
Section: Chapter Questions
Problem 1GZ
icon
Related questions
Question

Please do not copy and paste the answer that Chegg has for this question. I have asked this question already and the expert copied and pasted the answer from Chegg. Please actually solve this problem, or I'll just have to cancel my Bartleby subscription.

C++ Question 

Hello, Please create the correct code based on the attached requirement picture. Please make sure the code is functional. Please do not use any Advanced C++ syntax. Please make sure to submit the codes for Transaction.cpp, Transaction.h, Source.cpp, Account.cpp, and Account.h Thank you.

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
Transcribed Image Text: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
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Class
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,