填空题

以下程序输出的最后一个值是 【11】
int ff(int n)
static int f=1;
f=f*n;
return f;

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

【参考答案】

120