How do u get to see more sololearn popsicle questions to solve at my solutions tab | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

How do u get to see more sololearn popsicle questions to solve at my solutions tab

10th Apr 2020, 12:27 AM
Mujeeb Adeyanju Sunmola
Mujeeb Adeyanju Sunmola - avatar
5 Answers
+ 5
Adeyanju Sunmola go to the learn section scroll down to the section that reads code coach and you will see the other 24 problems available for free members... Thanks and happy coding
10th Apr 2020, 12:43 AM
BroFar
BroFar - avatar
+ 3
ThanksBroFar
10th Apr 2020, 8:38 AM
Mujeeb Adeyanju Sunmola
Mujeeb Adeyanju Sunmola - avatar
+ 3
Justus Would you like to tell me more about them?
10th Apr 2020, 8:39 AM
Mujeeb Adeyanju Sunmola
Mujeeb Adeyanju Sunmola - avatar
+ 2
There are other challenges not only popsicle
10th Apr 2020, 12:31 AM
Justus
Justus - avatar
+ 1
import java.util.Scanner; public class Program { public static void main(String[] args) { Scanner input = new Scanner(System.in); int siblings = input.nextInt(); int popsicles = input.nextInt(); int temp = popsicles%2; if (siblings <= popsicles ){ if (temp == 0) { System.out.println("give away"); } else { System.out.println("eat them yourself"); } } if (siblings > popsicles ){ if (siblings % popsicles == 0) { System.out.println("give away"); } else { System.out.println("eat them yourself"); } } } }
24th Apr 2020, 3:15 PM
Mohan .R.A
Mohan .R.A - avatar