I have finished other elements of the program, but I am not sure where to go on this one. Yes I am a beginner. I don't know how to perform these divisions with leftovers and such and how to make it all work. Any help would be appreciated.
Determine and report the number of large, medium, and small pizzas you need to order
For every 7 guests, order one large pizza
For every 3 guests left over, order one medium pizza
For every 1 guest left over, order one small pizza
If you are trying to find the remainder, you need to use the modulus operator (%). For example, ( 7 % 2 ) would return the remainder of 7/2, which is 1.