Create a program for a company named Retail-Mart
- Prompt the user to enter an item name (one word only), a quantity and a price.
- For this step, in addition to functionality, I'll be looking at: location of the variable declarations; appropriateness of data types selected; appropriateness of the variable names; variable naming standards.
- Calculate the subtotal (quantity * price), tax (tax rate is 7.5%), and total (subtotal + tax).
- For this step, in addition to basic functionality, I'll be looking at: whether you used a constant; how the naming standard for the constant and appropriateness of the name. The accuracy of the calculations.
- Finally, display the item name, quantity ordered, price, subtotal, tax, and total.
- In addition to basic functionality, I'll be looking for: formatted output, output that is centered vertically and horizontally; floating point data aligned on the decimal.
- BLING: Include a splash screen (not the clown. Find an ASCII art image for yourself. A good resource is https://www.chris.com/ascii) followed by a welcome message. Implement these two features as functions. Your program should contain three functions: main(), splash(), and welcome(). ONLY!
- Besides basic functionality, I'll be looking at: a well put together, formatted, pleasing, non-offensive splash screen; a relevant updated welcome message; display the splash before the welcome. Use of prototypes.
OTHER:
- I'll also be looking for programmer comments above your heading files. Include the information I've traditionally requested.
- Code indenting (neat and aligned correctly.)
- Use of white space (don't use too much or too little).
- Use of comments within the code. (clarify but don't overwhelm)