You will be writing a program for a local bank that allows them to create objects representing a customer's b account. Create the following classes · 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 O 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' an 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.

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

C++ Question 

Hello, Please create the correct code based on the attached requirement picture. Please do not use any Advanced C++ syntax. Please make sure the code is functional. 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 classes
· 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 classes · 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 6 steps with 4 images

Blurred answer
Knowledge Booster
Data members
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
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education