KnowledgeBoat Logo

Output Questions for Class 10 ICSE Computer Applications

Rewrite the following using ternary operator:

if (bill > 10000)
    discount=bill*10.0/100;
else
    discount=bill*5.0/100;

Java

Java Operators

ICSE

82 Likes

Answer

discount = bill > 10000 ? bill*10.0/100 : bill*5.0/100;

Answered By

47 Likes