用c语言写求1到10的阶乘。 **输出格式要求:" %2d!=%ld" 每行输出5个数的阶乘
时间: 2024-05-15 14:12:18 浏览: 88
C语言编程,1-10的阶乘
以下是用C语言写求1到10的阶乘,并且每行输出5个数的阶乘的代码:
```c
#include <stdio.h>
int main() {
int i, j;
long factorial = 1;
for (i = 1; i <= 10; i++) {
factorial *= i;
printf("%2d!=%ld ", i, factorial);
if (i % 5 == 0) {
printf("\n");
}
}
return 0;
}
```
输出结果为:
```
1!=1 2!=2 3!=6 4!=24 5!=120
6!=720 7!=5040 8!=40320 9!=362880 10!=3628800
```
输出格式满足要求,每行输出5个数的阶乘。
阅读全文