Computer Science, asked by ankitkshwh6358, 8 months ago

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,7) evalute to

Answers

Answered by Him2012
3

Answer:

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,7) evalute to

Similar questions