Advertisements
Advertisements
Question
Rewrite the following using ternary operator.
if (a > b)
{
if (a > c)
g = a;
else
g = c;
}
if (b > c)
g = b;
else
g = c;
One Line Answer
Solution
g = (a > b) ? (a > c ? a : c) : (b > c ? b : c);
shaalaa.com
Is there an error in this question or solution?
Chapter 1.04: Operators in Java - EXERCISES [Page 44]