write a program by using if else z=x>y?x:y
please answer this
004tranquil:
hello can you write the question correctly I couldn't quite understand your question
Answers
Answered by
1
Answer:
a program by using if else z=x>y?x:y
Explanation:
if(x>y){
z=x;
}
else{
z=y;
}
Answered by
0
Answer:
The answer below me is correct for c++
I'll give you for python
if x>y:
z=x
else:
z=y
Similar questions