lar amounts greater than 99999.99................................................................DICTIONARY: constants:CD(float)   - cost of CD PlayerREMOTE(float) - cost of Remote ContollerTAPE(float)   - cost of Tape PlayerTAX(float)    - sales tax rateTV(float)    - cost of TelevisonVCR(float)   - cost of VCRvariables: quantity_tv(int)- quantity of TVs inputted by userquantity_vcr(int)- quantity of VCRsinputted by userquantity_remote(int)- quantity of Remote Controllers inputted by userquantity_cd(int)- quantity of CD Players inputted by userquantity_tape(int)- quantity of Tape players inputted by usersubtotal(float)- total of all items before taxtotal(float)- total of all items including taxtotal_cd(float)- total cost of all the CD Playerstotal_remote(float)- total cost of all the Remote Controllerstotal_tape(float)- total cost of all the Tape Playerstotal_tax(float)- sales tax amounttotal_tv(float)- total cost of all the TVstotal_vcr(float)- total cost of all the VCRs*///=====================Begin Program Bill==========================   #include*iostream.h*#include*iomanip.h*//Global Declarationsconst TV=  300.00;const VCR=  120.00;const REMOTE=   25.80;const CD=  250.00;const TAPE=   50.00;const TAX= 9 + 1/8;int main (viod){// Local Declarationsinteger quantity_tv;integer quantity_vcr;integer quantity_remote;integer quantity_CD;integer quantity_tape;float subtotal;float total;float total_tv;float total_vcr;float total_remote;float total_cd;float total_tape;float tax_total;//DON'T FORGET: Output to the screen your name course and section number here!!//Prompt for and get quantities from the usercout ** "nHow many TV's were sold?-------------* ";cin  ** quantity;cout ** "How many VCR's were sold?--------------* ";cin  ** quantity;cout ** "How many Remote Controls were sold?----* ";cin  ** quantity;cout ** "How many CD Player's were sold?--------* ";cin  ** quantity;cout ** "How many Tape Recorder's were sold?----* ";cin  ** quantit...