Advertisements
Advertisements
Question
Rewrite the following program segment using if-else statements instead of the ternary operator.
commission = (sale > 5000) ? (sale * 10) / 100 : 0;
Answer in Brief
Solution
double net;
if (salary > 10000)
net = salary − (8.33 / 100) * salary;
else
net = salary − (5 / 100) * salary;
shaalaa.com
Is there an error in this question or solution?
Chapter 1.04: Operators in Java - EXERCISES [Page 44]