THIS IS THE PROGRAMM I HAVE TO WRITE
You have a store that sells the following items:
Shoes $50.00
T-shirts $30.00
Shorts $75.00
Caps $15.00
Jackets $100.00
Your sales associates need a program where they can enter customer information and calculate the customer’s total bill.
When the sales associate enters the program they should be presented with this main menu.
Enter customer information
Display Total Bill
Quit
If the sales associate selects option 1, the program should allow the sales associate to input their name, address, and e-mail address. Your program should then display this customer information to the screen with a message that the customer has been added to the customer list.
If the sales associate selects option 2, the program should ask the sales associate for the customer’s name, product that the customer is purchasing, the quantity, and the price of the product. The total bill will then be displayed to the screen and should include the following:
The customer’s name.
The product the customer is purchasing, the quantity, and total cost
The amount of tax 8%
The total cost with tax.
Example Total Bill Output:
John Doe
Product Purchased Quantity Total Cost
Shoes 2 $100.00
Tax 8%: $8.00
Total Cost: $108.00
HOW DO I WIITE IT