I am taking my first semester of Java programming, and we\'ve just covered the conditional operator (? :) conditions. I have two questions which seem to be wanting me to \"n
Parentheses are like violence: if it's not working, use more.
But seriously:
( condition A ? value A : ( condition B ? value B : ( condition C ? value C : ... ) ) )
And please, don't ever write code like that for anything important.