Computer Science, asked by Deepanshi2613, 3 months ago

Format the following if statement with indentation:
(i) if (num1 != num2) {
if (num2 >= num3) x=1; y=2;}
else { x=1; if (num1 == num2) z=3;}

Answers

Answered by atrs7391
2

if (num1 != num2)  

   {

      if (num2 >= num3) x=1; y=2;

   }

else  

   {  

       x=1; if (num1 == num2) z=3;

   }

Similar questions