Insert the missing parts to complete the following "short hand if...else
statement" (ternary operator):
int time = 20;
String result = @(1)time < 18@(1) @(1) "Good day." @(1) "Good evening.";
System.out.println(result);
int time = 20;
String result = (time < 18) ? "Good day." : "Good evening.";
System.out.println(result);