Program in python Specifications Develop a program to allow the user to interactively enter choices for a meal and process the cost of the meal. For the main course, the customer can choose steak $6), shrimp($8), fish($5) or chicken($4). To go with the main course, there is a choice of rice ($3) or potato ($2). The customer can also choose to order salad ($3). The program should allow the user to enter the customer’s choices and print the total cost of the meal. You can assume that customers will order one of the main courses and either rice or potato. Customers may choose not to order salad. Format of the output: The total cost of the meal is $##.## Run the program with the following 2 meal orders: 1. Steak, potato, salad 2. Chicken, rice, no salad Run the program twice; once for each meal order.
Specifications
Develop a program to allow the user to interactively enter choices for a meal and process the cost of the meal. For the main course, the customer can choose steak $6), shrimp($8), fish($5) or chicken($4). To go with the main course, there is a choice of rice ($3) or potato ($2). The customer can also choose to order salad ($3). The program should allow the user to enter the customer’s choices and print the total cost of the meal.
You can assume that customers will order one of the main courses and either rice or potato. Customers may choose not to order salad.
Format of the output:
The total cost of the meal is $##.##
Run the program with the following 2 meal orders:
1. Steak, potato, salad
2. Chicken, rice, no salad
Run the program twice; once for each meal order.
Step by step
Solved in 3 steps with 3 images