Convert the following if-else to a single
conditional statement:
if (x >= 10)
a = m + 5;
else
a = m;
Answers
Answered by
0
x >= 10 ? a = m + 5: a = m
Similar questions