Computer Science, asked by padmaseromapa, 4 months ago

Convert the following if-else to a single
conditional statement:
if (x >= 10)
a = m + 5;
else
a = m;​

Answers

Answered by valeriy69
0

\large\mathsf\color{pink}{Solution\: using\: JavaScript}

x >= 10 ? a = m + 5: a = m

\large\mathsf\color{lightgreen}useful?\: \color{white}\longrightarrow\: \color{orange}brainliest!

Similar questions