hum

View Paper
ESSAY DETAILS Words: 741
Pages: 3
(approximately 235 words/page)

Essay Database > Science & Technology
/* APPLICATION: Bill Report FILE NAME: Bill.cpp AUTHOR: Grace Hopper (Change Grace's name to yours) COURSE: CSC 102 Section 1 (Use the correct section number) INSTRUCTOR: Elizabeth Hutchison DUE DATE: December 10th, 2010 (Use the correct due date) REFERENCE: "Computer Science - A structured Programming Approach using C++", Forouzan & Gilberg (List any other references.) ................................................................ PURPOSE: Create a customer's bill for a company. The company sells only five different products: TV, VCR, Remote Controller, CD Player, and Tape Recorder. …

showed first 75 words of 741 total
Sign up for EssayTask and enjoy a huge collection of student essays, term papers and research papers. Improve your grade with our unique database!
showed last 75 words of 741 total
…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 totals cout ** "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==========================