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

2024年11月29日 22:40
有1个网友回答
网友(1):

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