.Question 2 Consider the following int g (int x, int n) { for (int i = 0; i < n; i++) { if (i % 2 == 0) { x *= i + 1; continue; } x--; if (x == 0) { break; } } return x; } What does g(2, 3) evaluate to?
Answers
Answered by
1
Answer:
I don't know the answer
Explanation:
Similar questions
Physics,
4 months ago
Science,
4 months ago
India Languages,
4 months ago
English,
9 months ago
Math,
9 months ago