注意:此页面搜索的是所有试题
main()
{int a=2,i;
for(i=0;i<3;i++)printf("%4d",f(i));}
f(int a)
{int b=3;
static int c=0;
b++;c++;return(a+b+c);
}

参考答案