Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Thank you! PLEASE READ I'm in a beginning class and we're just starting to learn how to make simple C++ programs using Putty. I need
Thank you!
PLEASE READ I'm in a beginning class and we're just starting to learn how to make simple C++ programs using Putty. I need help doing problems and fully understanding how to do them so that I can do others like them on my own. You are going to create a program that will generate a store receipt. 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 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 M&Ms Sales tax Total 1.56 0.12 1.68 Thank you for shopping with us! 20 spaces Requirements: Declare the tax rate as a const. int main^ const double TAX = 7.75; //sales tax rate ??? person; //sales person's name ??? date; I/date Use TAX whenever you need to use the tax rateStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started