fun2()通常做什么?
int fun(int x, int y)
{
if (y == 0) return 0;
return (x + fun(x, y-1));
}
int fun2(int a, int b)
{
if (b == 0) return 1;
return fun(a, fun2(a, b-1));
}
(A) x * y
(B) x + x * y
(C) x y
(D) y x答案: (C)
说明:该函数将x乘以本身y倍,即x y 。
这个问题的测验