Rewrite the following program segment using the if – else statement.
z = (x > y)? x : y;
Answers
Answered by
4
if(x>y)
{
z=x;
}
else
{
z=y;
}
please mark as brainliest
Similar questions