Computer Science, asked by ucfree750, 10 hours ago

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 dhanyaradhu
0

Answer:

// y = 36

int a=63, b=36, y;

if(a < b) {

y = a;

}

else {

y = b;

}

Similar questions