find the value of y and rewrite the following into if else statement ; int a=63,b=36. int y=(a<b)?a:b
pls answer fast
Answers
Answered by
0
Answer:
// y = 36
int a=63, b=36, y;
if(a < b) {
y = a;
}
else {
y = b;
}
Similar questions