a bank charges $10 per month plus the following check fees for a commercial checking account: $.10 each for fewer than 20 checks $.08 each for 20-39 checks $.06 each for 40-59 checks $.04 each for 60 or more checks the bank also charges an extra $15 if the balance of the account falls below $400 (before any check fees are applied). write a program that asks for the beginning balance and the number of checks written. compute and display the bank's service fees for the month. input validation: do not accept a negative value for the number of checks written. if a negative value is given for the beginning balance, display an urgent message indicating the account is overdrawn.

Respuesta :

Banks are not permitted to charge interest on this kind of account under Regulation Q of the US Federal Reserve. Instead, banks issue earnings credits based on the average account balance.

What is commercial checking account?

Any sort of bank account utilized by corporations and enterprises is referred to as a commercial account. A commercial account is typically a checking or other demand deposit account, which allows for unlimited money withdrawals. Compared to retail accounts, commercial accounts often have higher monthly service fees and other costs. Retail accounts, which are handled online or in a nearby branch, are a type of consumer banking or personal banking. Typically, businesses with commercial banking accounts are allocated a business representative.

#include <iostream>

using namespace std;

int main()

{

int balance;

int cw;

int fee1;

int fee2;

int totalfee;

cout<<"enter the beginning programology balance"<<endl;

cin>>balance;

cout<<"enter the check written "<<endl;

cin>>cw;

if(balance<400)

{

fee1=15;

}

else

{

fee1=0;

}

if(cw<=20)

{

fee2=(10*cw);

//programology.

}

else if(cw>20 && cw<=39)

{

fee2=(8*cw);

}

else if(cw>39 && cw <=59)

{

fee2=(6*cw);

}

else if (cw >=60)

{

fee2=(5*cw);

}

totalfee=fee1+fee2;

cout<<"your total fee is ="<<totalfee<<endl;

cout<<"check fee is ="<<fee2<<endl;

cout<<"programology says yeah its  low fee balance ="<<fee1<<endl;

}

To know more about commercial checking account, visit

https://brainly.com/question/20716129

#SPJ4