C语言阶乘函数

阶乘功能的函数
:
int fact(int n)
{long long c=1;int a;for(a=1;a<=n;a++){c=c*a;}return c;
}
代码中需要注意的是对于C的初始化数据

本文链接:https://my.lmcjl.com/post/5657.html

展开阅读全文

4 评论

留下您的评论.