Computer Science, asked by rajeshkumarsinghb, 8 months ago

3. Format the following if statements with indentation:
i. if (x == y) if (x == z) x = 1; else y = 1; else z = 1;​

Answers

Answered by mitasha69
3

I don't understand the question

Answered by sosinnerswastik
0

Answer:

Hope It Helps!

Explanation:

if (x == y)

{

   if (x == z)  

       x = 1;  

   y = 1;  

}  

else  

   z = 1;

Similar questions