This does not handle the end of month processing correctly. The monthly fee should only be deducted if the balance is below the minimum. Similarly, the interest should only be added if the balance is above the minimum. What does this mean and below is my code and this is a c++ assignment not a Java problem
This does not handle the end of month processing correctly. The monthly fee should only be deducted if the balance is below the minimum. Similarly, the interest should only be added if the balance is above the minimum. What does this mean and below is my code and this is a c++ assignment not a Java problem
Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
Related questions
Question
This does not handle the end of month processing correctly. The monthly fee should only be deducted if the balance is below the minimum. Similarly, the interest should only be added if the balance is above the minimum. What does this mean and below is my code and this is a c++ assignment not a Java problem
![```cpp
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
class Account {
protected:
int id;
double balance;
public:
Account() {
id = 0;
balance = 0;
}
Account(int newID, double initialBalance) {
id = newID;
balance = initialBalance;
}
void setID(int newID) {
id = newID;
}
void setBalance(double initialBalance) {
balance = initialBalance;
}
int getID() {
return id;
}
double getBalance() {
return balance;
}
void withdraw(double amount) {
balance = balance - amount;
}
void deposit(double amount) {
balance = balance + amount;
}
virtual void closeMonth() = 0;
virtual string accountString() = 0;
};
class Savings : public Account {
double interest;
double minBalance;
public:
Savings() {
interest = 0;
minBalance = 0;
}
void closeMonth() {
double pre = getBalance();
double newBalance = pre + ((pre * (interest / 100.0)) / 12.0);
setBalance(newBalance);
}
string accountString() {
return "Saving account # " + to_string(getID()) + " has balance of $" + to_string(getBalance());
}
void setInterest(double interest) {
this->interest = interest;
}
void setMinBalance(double minBalance) {
this->minBalance = minBalance;
}
};
class Checking : public Account {
double minBalance;
double monthlyFee;
public:
Checking() {
minBalance = 0;
monthlyFee = 0;
}
void closeMonth() {
double newBalance = getBalance() - monthlyFee;
setBalance(newBalance);
}
string accountString() {
return "Checking account # " + to_string(getID()) + " has balance of $" + to_string(getBalance());
}
void setMonthlyFee(double monthlyFee) {
this->monthlyFee = monthlyFee;
}
void setMinBalance(double minBalance) {
this->minBalance = minBalance;
}
};
int main() {
Account* accounts = new Account*[10];
ifstream infile;](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2F47577806-debe-455c-b0cc-e7afa6e96ab3%2F10a181c1-c6cb-4d39-88ab-87856d11c631%2Fcjg02js_processed.jpeg&w=3840&q=75)
Transcribed Image Text:```cpp
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
class Account {
protected:
int id;
double balance;
public:
Account() {
id = 0;
balance = 0;
}
Account(int newID, double initialBalance) {
id = newID;
balance = initialBalance;
}
void setID(int newID) {
id = newID;
}
void setBalance(double initialBalance) {
balance = initialBalance;
}
int getID() {
return id;
}
double getBalance() {
return balance;
}
void withdraw(double amount) {
balance = balance - amount;
}
void deposit(double amount) {
balance = balance + amount;
}
virtual void closeMonth() = 0;
virtual string accountString() = 0;
};
class Savings : public Account {
double interest;
double minBalance;
public:
Savings() {
interest = 0;
minBalance = 0;
}
void closeMonth() {
double pre = getBalance();
double newBalance = pre + ((pre * (interest / 100.0)) / 12.0);
setBalance(newBalance);
}
string accountString() {
return "Saving account # " + to_string(getID()) + " has balance of $" + to_string(getBalance());
}
void setInterest(double interest) {
this->interest = interest;
}
void setMinBalance(double minBalance) {
this->minBalance = minBalance;
}
};
class Checking : public Account {
double minBalance;
double monthlyFee;
public:
Checking() {
minBalance = 0;
monthlyFee = 0;
}
void closeMonth() {
double newBalance = getBalance() - monthlyFee;
setBalance(newBalance);
}
string accountString() {
return "Checking account # " + to_string(getID()) + " has balance of $" + to_string(getBalance());
}
void setMonthlyFee(double monthlyFee) {
this->monthlyFee = monthlyFee;
}
void setMinBalance(double minBalance) {
this->minBalance = minBalance;
}
};
int main() {
Account* accounts = new Account*[10];
ifstream infile;
![The image displays a snippet of C++ code designed to execute various banking operations on customer accounts. Below is a transcription and detailed explanation suitable for an educational website:
### Transcription of Code
```cpp
cout << "with an initial balance of $" << accounts[totalAccount-1].getBalance() << endl;
} else if (operationType == "Deposit"){
int id;
double amount;
infile >> id >> amount;
bool isFound=false;
int pos;
for (int i=0; i<totalAccount; i++){
if (accounts[i].getID()==id){
isFound=true;
accounts[i].deposit(amount);
pos=i;
}
}
if (!isFound){
cout << "Invalid Account Number - " << id << endl;
} else{
cout << "Deposited $" << amount << " into account #" << id << endl;
cout << "Current balance is $" << accounts[pos].getBalance() << endl;
}
} else if (operationType == "Withdraw"){
int id;
double amount;
infile >> id >> amount;
bool isFound=false;
for (int i=0; i<totalAccount; i++){
if (accounts[i].getID()==id){
isFound=true;
accounts[i].withdraw(amount);
}
}
if (!isFound){
cout << "Invalid Account Number - " << id << endl;
} else{
cout << "Withdraw $" << amount << " from account #" << id << endl;
cout << "Current balance is $" << accounts[pos].getBalance() << endl;
}
} else if (operationType == "Balance"){
int id;
infile >> id;
bool isFound=false;
for (int i=0; i<totalAccount; i++){
if (accounts[i].getID()==id){
isFound=true;
cout << "Current balance in account #" << id << " is $" << accounts[i].getBalance() << endl;
}
}
if (!isFound){
cout << "Invalid Account Number - " << id << endl;
}
} else if (operationType == "Close"){
cout << "Account close processing complete" << endl;
for (int i=0; i<totalAccount; i++){
if (accounts[i].getID()==id){
accounts](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2F47577806-debe-455c-b0cc-e7afa6e96ab3%2F10a181c1-c6cb-4d39-88ab-87856d11c631%2F3jl1ot_processed.jpeg&w=3840&q=75)
Transcribed Image Text:The image displays a snippet of C++ code designed to execute various banking operations on customer accounts. Below is a transcription and detailed explanation suitable for an educational website:
### Transcription of Code
```cpp
cout << "with an initial balance of $" << accounts[totalAccount-1].getBalance() << endl;
} else if (operationType == "Deposit"){
int id;
double amount;
infile >> id >> amount;
bool isFound=false;
int pos;
for (int i=0; i<totalAccount; i++){
if (accounts[i].getID()==id){
isFound=true;
accounts[i].deposit(amount);
pos=i;
}
}
if (!isFound){
cout << "Invalid Account Number - " << id << endl;
} else{
cout << "Deposited $" << amount << " into account #" << id << endl;
cout << "Current balance is $" << accounts[pos].getBalance() << endl;
}
} else if (operationType == "Withdraw"){
int id;
double amount;
infile >> id >> amount;
bool isFound=false;
for (int i=0; i<totalAccount; i++){
if (accounts[i].getID()==id){
isFound=true;
accounts[i].withdraw(amount);
}
}
if (!isFound){
cout << "Invalid Account Number - " << id << endl;
} else{
cout << "Withdraw $" << amount << " from account #" << id << endl;
cout << "Current balance is $" << accounts[pos].getBalance() << endl;
}
} else if (operationType == "Balance"){
int id;
infile >> id;
bool isFound=false;
for (int i=0; i<totalAccount; i++){
if (accounts[i].getID()==id){
isFound=true;
cout << "Current balance in account #" << id << " is $" << accounts[i].getBalance() << endl;
}
}
if (!isFound){
cout << "Invalid Account Number - " << id << endl;
}
} else if (operationType == "Close"){
cout << "Account close processing complete" << endl;
for (int i=0; i<totalAccount; i++){
if (accounts[i].getID()==id){
accounts
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
Step by step
Solved in 2 steps

Recommended textbooks for you

Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON

Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science

Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning

Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON

Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science

Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning

Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning

Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education

Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY