Final answer:
To solve this problem in Python, you can use a combination of loops, conditional statements, and variables. The code provided allows the user to select items from a snack bar menu, calculate the subtotal, tax amount, and grand total, and offers the option to order for an additional person and start over. Constants are used to store the menu items and prices, and functions are defined to calculate the tax and grand total.
Step-by-step explanation:
To solve this problem in Python, you can use a combination of loops, conditional statements, and variables. Here's an example code that can be used to create a snack bar menu program:
import math
# Constants to store menu items and prices
ITEM_1 = 1
ITEM_2 = 2
ITEM_3 = 3
ITEM_4 = 4
ITEM_5 = 5
EXIT_OPTION = 6
# Prices for each menu item
PRICE_1 = 2.50
PRICE_2 = 1.75
PRICE_3 = 3.00
PRICE_4 = 2.25
PRICE_5 = 1.50
def calculate_tax(subtotal):
tax_rate = 0.07
tax_amount = subtotal * tax_rate
return tax_amount
def calculate_grand_total(subtotal, tax_amount):
grand_total = subtotal + tax_amount
return grand_total
def main():
# Get user's name
name = input('Enter your name: ').capitalize()
# Initialize variables
subtotal = 0
menu_choice = 0
# Display menu and get user's choice
while menu_choice != EXIT_OPTION:
print('Welcome to Snack Bar Menu!')
print('1. Item 1 ($', PRICE_1,')')
print('2. Item 2 ($', PRICE_2,')')
print('3. Item 3 ($', PRICE_3,')')
print('4. Item 4 ($', PRICE_4,')')
print('5. Item 5 ($', PRICE_5,')')
print('6. Exit')
menu_choice = int(input('Enter your choice: '))
# Calculate subtotal
if menu_choice == ITEM_1:
subtotal += PRICE_1
elif menu_choice == ITEM_2:
subtotal += PRICE_2
elif menu_choice == ITEM_3:
subtotal += PRICE_3
elif menu_choice == ITEM_4:
subtotal += PRICE_4
elif menu_choice == ITEM_5:
subtotal += PRICE_5
elif menu_choice == EXIT_OPTION:
break
else:
print('Invalid choice!')
continue
# Display new subtotal
print('New subtotal:', round(subtotal, 2))
# Calculate tax and grand total
tax_amount = calculate_tax(subtotal)
grand_total = calculate_grand_total(subtotal, tax_amount)
# Display final results
print('Subtotal:', round(subtotal, 2))
print('Tax amount:', round(tax_amount, 2))
print('Grand total:', round(grand_total, 2))
# Ask if user wants to order for an additional person and start over
choice = input('Do you want to order for an additional person? (yes or no): ')
if choice.lower() == 'yes':
main()
main()
In this program, the user's name is stored using the name variable. Constants are used to store the menu items and their respective prices. The program uses a loop to display the menu and get the user's choice. The subtotal is calculated based on the user's choice, and the new subtotal is displayed after each menu item is added. Finally, the tax amount and grand total are calculated and displayed, and the user is given the option to order for an additional person and start over.