填空题

以下程序输出的最后一个值是 【8】 。 int ff(int n) { static int f=1; f=f*n; retum f; } main() { int i; for(i=1;i<=5;i++) printf("%d\n",ff(i))i }

【参考答案】

120