y_tape;//Calculate the totalstotal_cd = CD * quantity_cd;total_tv = TV * quantity_tvtotal_vcr =VCR * quantity_vcr;total_tape = TAPE * quantity_tape;total_remote = REMOTES * quantity_remote;subtotal = total_tv * total_vcr * total_remote * total_cd * total_tape;total = subtotal + total_tax;total_tax = subtotal + TAX;Display results to the screencout ** setiosflags(ios::fixed);cout ** setprecision(2);//Print headingscout ** "n t t UNITt TOTAL"** endl;cout ** "QTYtDESCRIPTIONt PRICEt PRICE" ** endl;cout ** "---t-----------t------t--------" ** endl;//Print itemizationcout ** setw(3) ** quantity_tv ** "tTV t" ** setw(6) ** TV; ** "t" ** setw(8) ** total_tv ** endl;cout ** setw(4) ** quantity_vcr ** "tVCR t" ** setw(7) ** VCR; ** "t" ** setw(9) ** total_vcr ** endl;cout ** setw(5) ** quantity_remote ** "tREMOTE CTRL t" ** setw(8) ** REMOTE; ** "t" ** setw(10) ** total_remote ** endl;cout ** setw(6) ** quantity_cd ** "tCD t" ** setw(9) ** CD; ** "t" ** setw(11) ** total_cd ** endl;cout ** setw(7) ** quantity_tape ** "tTAPE RECORDERt" ** setw(10) ** TAPE ; ** "t" ** setw(12) ** total_tape ** endl;//Print totalscout ** "tttt--------" ** endl;cout ** "ttSUBTOTALt" ** setw(18) ** sub_total ** n;cout ** "ttTAX t" ** setw(18) ** total_tax ** n;cout ** "ttTOTAL t" ** setw(18) ** total ** n;//DON'T FORGET: Output to the screen your name course and section number here too!!!return;} //end main//=====================End Program Bill==========================...