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.";
cout << result;
int time = 20;
string result = (time < 18) ? "Good day." : "Good evening.";
cout << result;