I would like to know what does this return statement mean since I have never seen it:
static int max(int a, int b) {
return (a > b)? a : b;
}
Thank you for your help!
I would like to know what does this return statement mean since I have never seen it:
static int max(int a, int b) {
return (a > b)? a : b;
}
Thank you for your help!