c语言练习题:用函数求n的阶乘

#include 
#include 
int factor(int n)
{
 int ret = 1;
 int i = 1;
 for (; i <= n; ++i)
 {
  ret *= i;
 }
 return ret;
}
int main()
{
 printf("%d", factor(5));
 system("pause");
 return(0);
}

你可能感兴趣的:(c语言习题)