用c计算1! +2!+3!+4! +5!+6!
时间: 2023-09-20 19:07:52 浏览: 34
c++ 1!+2!+3!+..
#include <stdio.h>
int main()
{
int i, j, result;
for (i = 1; i <= 6; i++)
{
result = 1;
for (j = 1; j <= i; j++)
{
result *= j;
}
printf("%d! = %d\n", i, result);
}
return 0;
}
// 输出结果:
// 1! = 1
// 2! = 2
// 3! = 6
// 4! = 24
// 5! = 120
// 6! = 720
阅读全文