Question: You are going to create a program that will generate a store receipt. Name your program receipt.epp Your program will take 4 inputs from the

You are going to create a program that will generate a store receipt. Name your program receipt.epp Your program will take 4 inputs from the keyboard: Sales person's first name today's date (mm/dd/yyyy) item name (one word) price See the sample runs in "lab 2-3: After your program reads all the inputs, it will print the receipt. receipt.cpp - cout, iomanip RUNS" posted on Cougar Courses. All the prompts to the user and the format of the receipt have to look exactly the same as the sample runs. Test your program using the data given in the 3 sample runs. 30 spaces "Your Friendly Neighbor Store" 09/30/2011 Mike MAMS Sales tax Total 1.56 0. Thank you for shopping with us! Requirements: Declare the tax rate as a const. int main() const double TAX = 7.75; //sales tax rate ??? person; //sales person's name ??? date; //date Use TAX whenever you need to use the tax rate. Don't use fixed
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
