Bank Program This c++ assignment uses the same account class created in Lab #4 with a more generally useful interface. It reads commands from a bank.txt file. Your program must process the following four commands. Create account amount Deposit account amount Withdraw account amount Balance account In all of the above commands, account is an integer and amount is a double. The following program behavior is required – 1. Valid account numbers are 1-9. This requires the program to have an array of references to Account objects. 2. If the first word on any line contains a command other than the four listed above, an error message should be displayed and that line ignored. 3. The create command creates a new account object with the given account number and initial balance. If an account already exists with that number an error message should be displayed and the command ignored. 4. The Deposit and Withdraw commands perform the indicated operation on an existing account. If no account with that number has been created, an error message is displayed and the command ignored. 5. The Balance command displays the balance of the requested account. No change to the account occurs. If no account with that number has been created, an error message is displayed and the command ignored. Previous account class used: #ifndef Account_h #define Account_h using namespace std; class Account { private: int id; double balance; public: //default constructor Account() { id = 0; balance = 0; } //overload constructor Account(int newID, double initialBalance) { this->id = newID; this->balance = initialBalance; } //sets id void setId(int newID) { this->id = newID; } //returns id int getId() { return this->id; } //sets balance void setBalance(double newBalance) { this->balance = newBalance; } //returns balance double getBalance() { return this->balance; } //withdraws from balance void withdraw(double amount) { this->balance = this->balance - amount; } //adds to balance void deposit(double amount) { this->balance = this->balance + amount; } }; #endif ------ bank.txt: Create 1 1000.01 Create 2 2000.02 Create 3 3000.03 Deposit 1 11.11 Deposit 2 22.22 Withdraw 4 5000.00 Create 4 4000.04 Withdraw 1 0.10 Balance 2 Withdraw 2 0.20 Deposit 3 33.33 Withdraw 4 0.40 Bad Command 65 Balance 1 Balance 2 Balance 3 Balance 4 -------- Sample output: put in as a jpg:

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

Bank Program
This c++ assignment uses the same account class created in Lab #4 with a more generally useful interface. It reads commands from a bank.txt file. Your program must process the following four commands.
Create account amount
Deposit account amount
Withdraw account amount
Balance account
In all of the above commands, account is an integer and amount is a double.
The following program behavior is required –
1. Valid account numbers are 1-9. This requires the program to have an array of references to Account objects.
2. If the first word on any line contains a command other than the four listed above, an error message should be displayed and that line ignored.
3. The create command creates a new account object with the given account number and initial balance. If an account already exists with that number an error message should be displayed and the command ignored.
4. The Deposit and Withdraw commands perform the indicated operation on an existing account. If no account with that number has been created, an error message is displayed and the command ignored.
5. The Balance command displays the balance of the requested account. No change to the account occurs. If no account with that number has been created, an error message is displayed and the command ignored.

Previous account class used:

#ifndef Account_h
#define Account_h
using namespace std;

class Account
{
private:
int id;
double balance;
public:
//default constructor
Account()
{
id = 0;
balance = 0;
}

//overload constructor
Account(int newID, double initialBalance)
{
this->id = newID;
this->balance = initialBalance;
}

//sets id
void setId(int newID)
{
this->id = newID;
}

//returns id
int getId()
{
return this->id;
}

//sets balance
void setBalance(double newBalance)
{
this->balance = newBalance;
}

//returns balance
double getBalance()
{
return this->balance;
}

//withdraws from balance
void withdraw(double amount)
{
this->balance = this->balance - amount;
}

//adds to balance
void deposit(double amount)
{
this->balance = this->balance + amount;
}
};
#endif

------

bank.txt:

Create 1 1000.01

Create 2 2000.02

Create 3 3000.03

Deposit 1 11.11

Deposit 2 22.22

Withdraw 4 5000.00

Create 4 4000.04

Withdraw 1 0.10

Balance 2

Withdraw 2 0.20

Deposit 3 33.33

Withdraw 4 0.40

Bad Command 65

Balance 1

Balance 2

Balance 3

Balance 4

--------

Sample output: put in as a jpg:

C:\Users\paul.koester\Desktop\COSC1437.exe
File Opened
Account number 1 created
with an initial balance of $1000.01
Account number 2 created
with an initial balance of $2000.02
Account number 3 created
with an initial balance of $3000.03
Deposited $11.11 into account #1
current balance is $1011.12
Deposited $22.22 into account #2
current balance is $2022.24
Invalid Account Number - 4
Account number 4 created
with an initial balance of $4000.04
Withdrew $0.1 from account #1
current balance is $1011.02
Current balance in account #2 is $2022.24
Withdrew $0.2 from account #2
current balance is $2022.04
Deposited $33.33 into account #3
current balance is $3033.36
Withdrew $0.4 from account #4
current balance is $3999.64
Unrecognized command - Bad
Current balance in account #1 is $1011.02
Current balance in account #2 is $2022.04
Current balance in account #3 is $3033.36
Current balance in account #4 is $3999.64
Press any key to continue
Transcribed Image Text:C:\Users\paul.koester\Desktop\COSC1437.exe File Opened Account number 1 created with an initial balance of $1000.01 Account number 2 created with an initial balance of $2000.02 Account number 3 created with an initial balance of $3000.03 Deposited $11.11 into account #1 current balance is $1011.12 Deposited $22.22 into account #2 current balance is $2022.24 Invalid Account Number - 4 Account number 4 created with an initial balance of $4000.04 Withdrew $0.1 from account #1 current balance is $1011.02 Current balance in account #2 is $2022.24 Withdrew $0.2 from account #2 current balance is $2022.04 Deposited $33.33 into account #3 current balance is $3033.36 Withdrew $0.4 from account #4 current balance is $3999.64 Unrecognized command - Bad Current balance in account #1 is $1011.02 Current balance in account #2 is $2022.04 Current balance in account #3 is $3033.36 Current balance in account #4 is $3999.64 Press any key to continue
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 5 images

Blurred answer
Knowledge Booster
Array
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
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