赞
踩
#include<stdio.h>
long Fact(int x);
int main ()
{
int a;
long ret ;
printf("Inputa:");
scanf("%d",&a);
ret=Fact(a);
printf("ret=%d\n",ret );
return 0;
}
long Fact(int x)
{
int c;
long result=1,sum=0;
for(c=
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。