写一段c语言代码实现求出1!+2!+.......+10!
时间: 2023-09-04 18:13:03 浏览: 88
以下是实现求出1! 2! ....... 10!的C语言代码:
```c
#include <stdio.h>
int main() {
int n = 10;
long long factorial = 1;
for (int i = 1; i <= n; ++i) {
factorial *= i;
printf("%d! = %lld\n", i, factorial);
}
return 0;
}
```
运行结果:
```
1! = 1
2! = 2
3! = 6
4! = 24
5! = 120
6! = 720
7! = 5040
8! = 40320
9! = 362880
10! = 3628800
```
这段代码使用了循环计算1到10的阶乘,并输出每个阶乘的结果。
阅读全文