-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathmain.py
46 lines (41 loc) · 1.02 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
from order import Order
print('*** Welcome to Chick-Fil-A ***')
option = 1
myOrder = Order()
while option != 0:
print('')
print('1. Lemonade')
print('2. Coke')
print('3. Cold Brew Coffee')
print('4. Fries')
print('5. Salad')
print('6. Wrap')
print('6.5. 10 lbs of steel')
print('7. Chicken Strips')
print('8. Chicken Nuggies')
print('9. Kid\'s Meal')
print('10. Mac n\' Cheese')
print('11. Chicken Biscuit')
print('12. Fruit Cup')
print('13. Shake')
print('14. Frosted Lemonade')
print('15. Cookie')
print('16. Chicken Sandwich')
print('0. Done')
print('Select an option: ')
option = int(input())
if option == 0:
myOrder.print_order()
break
if option == 1:
myOrder.add_lemonade()
if option == 3:
myOrder.add_coffee()
if option == 5:
myOrder.add_salad()
if option == 6:
myOrder.add_wrap()
if option == 13:
myOrder.add_shake()
if option == 15:
myOrder.add_cookie()