Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Program Specifications. Write a program to calculate the cost of hosting three pizza parties on Friday, Saturday and Sunday. Read from input the number of people attending, the average number of slices per person and the cost of one pizza. Dollar values are output with two decimals. For example, print(f"Cost: ${cost:.2f}").
- Note: this program is designed for incremental development. Complete each step and submit for grading before starting the next step. Only a portion of tests pass after each step but confirm progress.
- Step 1 (2 pts). Read from input the number of people (int), average slices per person (float) and cost of one pizza (float). Calculate the number of whole pizzas needed (8 slices per pizza). There will likely be leftovers for breakfast. Hint: Use the ceil() function from the math library to round up to the nearest whole number and convert to an int. Calculate and output the cost for all pizzas. Submit for grading to confirm test 1 passes.
- Ex: If the input is:
- 10 2.6 10.50
- The output is:
- Friday Night Party
- 4 Pizzas: $42.00
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement