A store gives away 3 loaves for every dozen loaves purchased, write an algorithm that determines the number of loaves a buyer carries, if it is known that they bought X dozen.

Question
Answer:
Here's the algorithm to determine the number of loaves a buyer carries if they bought X dozens: Input the number of dozens purchased (X). Calculate the total number of loaves in the purchased dozens by multiplying X by 12 (since there are 12 loaves in a dozen). Calculate the number of free loaves by multiplying X by 3 (since the store gives away 3 loaves for every dozen purchased). Add the total number of loaves in the purchased dozens and the number of free loaves to find the total number of loaves the buyer carries. Display the total number of loaves carried by the buyer. This algorithm allows you to determine the number of loaves a buyer carries based on the number of dozens they purchased (X) without providing the actual code.
solved
general 6 months ago 584