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
3
I don't understand the question
Answered by
0
Answer:
Hope It Helps!
Explanation:
if (x == y)
{
if (x == z)
x = 1;
y = 1;
}
else
z = 1;
Similar questions