g) Format the following if statement with indentation.
if (x == y) if (x == z) x = 1; else y = 1; else z= 1;
Answers
Answered by
4
if (x == y)
if (x == z)
x = 1;
else
y = 1;
else
z = 1;
hope helpful PLZ mark me brainliest
Similar questions