0
I need help on the popsicle challenge. 4/5 right.
The input is two integers, the first one represents the number of siblings, and the second one represents the number of popsicles. The output should say “give away” if I can give them away evenly to the siblings, and “eat them to yourself” if I can’t give them out evenly. When I put 0 in the input for popsicles it says “give away” which doesn’t make sense because you can’t give away 0 popsicles. I don’t know how to fix that. https://code.sololearn.com/cK7MRqqLD1wZ/?ref=app
3 Respostas
+ 2
If the number of popsicles doesn't divide equally among the siblings, then eat them yourself otherwise give them away.
Basically if 'rem' is not equal to 0 then eat them if it is then give them away. The 1 check in 1 if statement is all you need.
+ 3
ChaoticDawg thank you
+ 1
popsicles%siblings==0