#include<stdio.h>
int main()
{
int w,p,s=0,n,m=1;
for(n=1;n<=3;n++,m=1)
{
for(p=1;p<=n;p++)
{
w=p*m;
m=w;
}
s=s+m;
}
printf("%d\n",s);
return 0;
}
这样应该可以了吧!
int main()
{
int w,p,s=0,n,m=1;
for(n=1;n<=3;n++,m=1)
{
for(p=1;p<=n;p++)
{
w=p*m;
m=w;
}
s=s+m;
}
printf("%d\n",s);
return 0;
}
这样应该可以了吧!
扬起风帆,从此自信远航。。。。。