Convert the following if-else to a single conditional statement.
if(qty>=20)
order=max+5;
else
oder=max;
Answers
Answered by
4
Answer:
qty>=20 ? order = max + 5 : order = max;
Explanation:
Similar questions