Advertisements
Advertisements
Question
Rewrite the following using ternary operator.
if (x % 2 == 0)
System.out.println("Even");
else
discount = bill * 5.0 / 100;
One Line Answer
Solution
String s = (x % 2 == 0) ? "Even" : "Odd";
shaalaa.com
Is there an error in this question or solution?
Chapter 1.04: Operators in Java - EXERCISES [Page 44]