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