троичный оператор не работает

Netbeans говорит, что мой троичный оператор неэто заявление. Как так?

int direction;
direction = (Math.random() < 0.5) ? 0 : 1; // direction is either L or R (0 or 1)
direction == 0 ? System.out.print('L') : System.out.print('R');

Я попробовал этоs if / then / else, и это работает нормально:

int direction;
direction = (Math.random() < 0.5) ? 0 : 1; // direction is either L or R (0 or 1)
if(direction == 0){
    System.out.print('L');
} else {
    System.out.print('R');
}

Ответы на вопрос(3)

Ваш ответ на вопрос