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
2
if (num1 != num2)
{
if (num2 >= num3) x=1; y=2;
}
else
{
x=1; if (num1 == num2) z=3;
}
Similar questions