有以下程序
#include <stdio.h>
Int f(int x)
{ int y;
If(x==0||x==1) return(3);
Y=x*x-f(x-2);
Return y;
}
Main()
{ int z;
Z=f(3); printf("%d\n",z);
}
程序的运行结果是______。
B.9 C.6 D.8正确答案C
有以下程序
#include <stdio.h>
Int f(int x)
{ int y;
If(x==0||x==1) return(3);
Y=x*x-f(x-2);
Return y;
}
Main()
{ int z;
Z=f(3); printf("%d\n",z);
}
程序的运行结果是______。
B.9 C.6 D.8正确答案C