Computer Science, asked by chetanac, 7 months ago

int f( int x,int y){
if (x+2<y){
x=x+3;
return y * n;
}
else{
return x+y+2;
}
}
what does f(5,10) evaluate to?​

Answers

Answered by shradhakushwaha3021
12

Answer:

hello please wait for some time

Answered by abhirajraushan
0

int f (int x, int y) { if (x + 2 < y) { x = x + 3; return y * x; } else { return x + y + 2; } } what does f(5,10) evalute to

Answer =17

Similar questions