Question: Create a program that will calculate the correct number of packages for frozen hamburgers. The program will need to ask the user how many people

Create a program that will calculate the correct number of packages for frozen hamburgers. The program will need to ask the user how many people are coming to the party and will print out the number of hamburgers and the number of packages they will need to buy. From past experience you know that most party guests will consume between 1 to 2 hamburgers each. Therefore, in order to make sure you have enough, multiply the number of guests by 1.5 to determine the total number of hamburgers. To determine the number of packages, realize that hamburgers come in packages of 10. Since we are estimating the number of hamburgers consumed at the party to be about 1.5 per person, if the number of hamburgers left over is greater than 5 , add another package of hamburgers. Otherwise don't add an extra package. For instance, if there are 30 people coming to the party that equates to 45 hamburgers. That would mean we would need to to purchase 5 packages of hamburgers. (HINT: When solving this don't forget about the modulus operator.) If there are 29 people coming to the party that equates to 43.5 hamburgers and only 4 packages. Don't worry that we may be short 3.5 hamburgers, it was just an estimate. Make sure your input statements and output statements have prompts and descriptive text so that they can identify to the user what the inputs and outputs are representing. Additionally include at the top of your code the Decomposition for this problem in comments. For example
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
