Computer Science, asked by Atul8974, 5 days ago

Convert the following if-else to a single conditional statement.
if(qty>=20)
order=max+5;
else
oder=max;

Answers

Answered by samarthkrv
4

Answer:

qty>=20 ? order = max + 5 : order = max;

Explanation:

Similar questions