有以下程序:#include <stdio.h> in

有以下程序:

#include <stdio.h>
int fun(int n)
{
 static int t=1;
 int i=1;
 for(;i<=n;i++)t*=i;
 return t;
}
main()
{
 int t=1,i;
 for(i=2;i<4;i++)
 t+=fun(i);
 printf("%d\n",t);
}

程序的运行结果是( )。 

答案
C

题目信息

题号:4471
题型:单选题
难度:普通