- 2
code coach
Pls i need the answer of the first question in code coach (popsicles)
5 Answers
+ 3
Tell us which language, refresh us on what the popsicles problem is, and paste a link to your attempt
+ 3
¿¿You need the answer?? Trust me you don't need it, you can do it yourself..
You just have to evaluate if the second number is a multiple of the first, is there an operator for that?
+ 2
If you want the finished code, without doing anything, you're simply not learning.
Start in code playground, try to advance and, when you hit a difficulty you can't solve, ask a question about the specific difficulty. Do remember to link your code inside the question with + button, describe what the code should do, and explain your difficulty. Also, include a tag with the code language.
We have to see your attempt and understand your difficulty to be able to help.
0
C language
0
#include <stdio.h>
int main() {
int siblings, popsicles;
scanf("%d", &siblings);
scanf("%d", &popsicles);
//your code goes here
return 0;
}