#includeint fun(int n){ int s=1,i; for(i=1;i<=n;i++) s*=i; return s;}main(){ int i,s=0; for(i=1;i<=5;i++) s+=fun(i); printf("%d",s);}
如图所示,望采纳。。。。。。