hum
Title: hum
Category: /Science & Technology
Details: Words: 741 | Pages: 3 (approximately 235 words/page)
hum
Category: /Science & Technology
Details: Words: 741 | Pages: 3 (approximately 235 words/page)
/*
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
You are viewing only a small portion of the paper.
Please login or register to access the full copy.
Please login or register to access the full copy.
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==========================