Computer Science, asked by mmrm36670, 5 months ago

Rewrite the following program segment using the if – else statement.

z = (x > y)? x : y;​

Answers

Answered by sameer7815
4

if(x>y)

{

z=x;

}

else

{

z=y;

}

please mark as brainliest

Similar questions