求n的阶乘的和的c语言程序

2024-11-29 22:40:05
推荐回答(1个)
回答1:

求n的阶乘的和的c语言程序
main()
{ int s=0,a=1,i;
for(i=1;i<=10;i++)
{ a=a*i;
s+=a;
}…