You have already completed these exercises!
Do you want to take them again?
You completed the JAVA If Else Exercises from W3Schools.com
Share on:
What will be the result of the following code:int time = 20;if (time < 18) { System.out.println("Good day");} else { System.out.println("Good evening");}
int time = 20;if (time < 18) { System.out.println("Good day");} else { System.out.println("Good evening");}