Menu
×
×
Correct!
Exercise:Insert the missing parts to complete the following "short hand
int time = 20;
String result = (time < 18) ? "Good day." : "Good evening.";
System.out.println(result);
Not CorrectClick here to try again. Correct!Next ❯int time = 20; String result =time < 18 "Good day." "Good evening."; System.out.println(result); |