Computer Applications
Rewrite the following using ternary operator:
if (p >= 4750)
k = p * 5 / 100;
else
k = p * 10 / 100;
Java
Java Operators
75 Likes
Answer
k = (p >= 4750) ? p * 5 / 100 : p * 10 / 100;
Answered By
44 Likes
Related Questions
Rewrite the following using ternary operator:
if (bill > 10000) discount=bill*10.0/100; else discount=bill*5.0/100;
Rewrite the following using ternary operator:
if(a > b) { if (a > c) g = a; else g = c; } else if (b > c) g = b; else g = c;
Rewrite the following using ternary operator:
if (x % 2 == 0) System.out.println("Even"); else System.out.println("Odd");
Rewrite the following using ternary operator:
if(income < 10000) tax = 0; else tax = 12;