Meadowdale Dairy Farm sells organic brown eggs to local customers. It charges $3.25 for a dozen eggs, or 45 cents for individual eggs that are not part of a dozen. Write a program that prompts a user for the number of eggs in the order and then display the amount owed with a full explanation using the following wording: You ordered 27 eggs. That’s 2 dozen at $3.25 per dozen and 3 loose eggs at 45 cents each for a total of $7.85.

Respuesta :

Answer:

Step-by-step explanation:

given that Meadowdale Dairy Farm sells organic brown eggs to local customers. It charges $3.25 for a dozen eggs, or 45 cents for individual eggs that are not part of a dozen.

We are to write a program that prompts a user for the number of eggs in the order and then display the amount owed with a full explanation using the following wording:

We order 27 eggs.  

First we divide by 24 and keep quotient 2 as x and  remainder 3 as y

Now cost would be

3.25x+0.45y

This applies to any number you purchase

Suppose 27 eggs are there x = 2 and y =3

So we get [tex]3.25 (2)+0.45(3)= \\6.50+1.35\\=7.85[/tex]