Computer Science, asked by sUwaish12, 11 months ago

Convert the following if-else to a single conditional statement if (x greater than or =10) a=m+5; else a=m;

Answers

Answered by sobhanhero
6
if x>=10:
a=m+5
if a<10:
a= m

the following code is in python
Similar questions