test ? then-expr : else-expr
(if test then-expr else-expr)
double taxConditional(double income) { return income < 10000 ? 0.0 : income * 0.20; }