当前位置:编程学习 > C/C++ >>

c语言问题

、* 编写程序: * 求1+2!+...+20!的值。
答案:#include<stdio.h> 

long int fun(int n)
{
   long int temp,totall=0;
   int i,j;
   for(i=1;i<=n;i++)
  {
     temp=1;
     for (j=i;j>0;j--)
	temp=temp*j;
     totall+=temp;
  }
  return totall;
}

void main()
{
  printf("%ld",fun(20));
}

上一个:菜鸟提问:C、C++、还有C#有什么区别?
下一个:求C语言高手!急!急!急!

CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,