1.Assume hot dogs come in packages of 10, and hot dog buns come in packages of 8. Write a program that calculates the number of packages of hot dogs and the number of packages of hot dog buns needed for a cookout, with the minimum amount of leftovers. The program should ask the user for the number of people attending the cookout and the number of hot dogs each person will be given.
The program should display the following details:
• The minimum number of packages of hot dogs required
• The minimum number of packages of hot dog buns required
• The number of hot dogs that will be left over
• The number of hot dog buns that will be left over
Note: Using set data structure to solve above programme
nums = int(input("Enter number of people: "))
num_of_dogs = int(input("Enter number of hot dogs: "))
dogs_per = 10
buns_per = 8
total = nums * num_of_dogs
dog_packages = total
buns_needed = total
left_dogs = total % dogs_per
dogs_left = total % buns_per
print("Minimum number of packages of hot dogs required =", dog_packages)
print("Minimum number of packages of hot dog buns required =", buns_needed)
print("Hot dogs left over =", left_dogs)
print("Hot dogs buns left over =", dogs_left)
Comments
Leave a comment