求10!

Posted 且行且停且留心,静看明朝

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了求10!相关的知识,希望对你有一定的参考价值。

#include<stdio.h>
main(void)
{
int i=2,n=10;
float fac=1; /*¶¨ÒåfacΪµ¥¾«¶ÈÐÍ£¬²¢¸³³õÖµ1*/
if(n==0||n==1)
{
printf("facorial is 1\n");
return 0;
}
while(i<=n)
{
fac=fac*i;
i++;
}
printf("facorial of %d is :%.f\n",n,fac);
}

 

以上是关于求10!的主要内容,如果未能解决你的问题,请参考以下文章

C语言for循环 求1--10阶乘的和

9.求10!

c语言编程 求1到10的奇数并输出 谢谢

C语言for循环 求1--10阶乘的和

用c语言for循环求1到10阶乘

C语言如何求一个整数的各个位数之和