问题 问答题

int f(int n)
static int f=1;
f=f*n;
return f;

main()
int i;
for (i=1;i<5;i++)
printf("%d,",f(i));

答案

参考答案:1,2,6,24,

单项选择题 B1型题
单项选择题