Advertisements
Advertisements
Question
Rewrite the following using ternary operator.
if (p >= 4750)
k = p * 5 / 100;
else
k = p * 10 / 100;
One Line Answer
Solution
double k = (p >= 4750) ? p * 5 / 100 : p * 10 / 100;
shaalaa.com
Is there an error in this question or solution?
Chapter 1.04: Operators in Java - EXERCISES [Page 44]