考虑以下 C函数。
float f(float x, int y)
{
float p, s; int i;
for (s=1, p=1, i=1; i < y; i ++)
{
p*= x/i;
s+=p;
}
return s;
}
对于较大的 y 值,函数f 的返回值最接近
(A) x^y
(B) e^x
(C) ln(1 + x)
(D) x^x答案:(乙)
说明:见https://www.geeksforgeeks.org/data-structures-and-algorithms-set-5/的问题1
这个问题的测验