Computer Applications
Rewrite the following program segment using if-else statements instead of the ternary operator:
commission = (sale > 5000) ? sale*10/100 : 0;
Java
Java Operators
86 Likes
Answer
if (sale > 5000)
commission = sale * 10 / 100;
else
commission = 0;
Answered By
51 Likes
Related Questions
Rewrite the following program segment using if-else statements instead of the ternary operator:
net = (salary > 10000) ? salary - (8.33/100)*salary : salary - (5/100)*salary
Rewrite the following program segment using if-else statements instead of the ternary operator:
String grade = (marks>=90)?"A": (marks>=80)? "B": "C";
What is the value of y after the execution?
y+= ++y + y-- + --y; when int y=8Rewrite the following program segment using if-else statements instead of the ternary operator:
s = (a + b < c || a + c <= b || b + c <= a) ? "Triangle is not possible": "Triangle is possible";