Book Starting out with Programming Logic and Design 4th Edit
Book: Starting out with Programming Logic and Design 4th Edition by Tony Gaddis
Chapter 3 Programming Exercise #11
Hot Dog Cookout Calculator
Assume that hot dogs come in packages of 10, and hot dog buns come in packages of 8. Design a modular 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:
The minimum number of packages of hot dog required
The minimum number of packages of buns required
The number of hot dogs that will be left over
The number of buns that will be left over
Solution
#include