利用循环结构编写程序求1!+2!+…+10!的值
时间: 2024-01-16 19:04:49 浏览: 73
c语言循环结构的程序
以下是使用循环结构编写程序求1!+2!+...+10!的值的示例代码:
```java
public class FactorialSum {
public static void main(String[] args) {
int total = 0;
for (int i = 1; i <= 10; i++) {
int cTotal = 1;
for (int j = 1; j <= i; j++) {
cTotal *= j;
}
total += cTotal;
System.out.println(i + "! = " + cTotal);
}
System.out.println("1! + 2! + 3! + ... + 10! 的阶乘和是:" + total);
}
}
```
运行输出:
```
1! = 1
2! = 2
3! = 6
4! = 24
5! = 120
6! = 720
7! = 5040
8! = 40320
9! = 362880
10! = 3628800
1! + 2! + 3! + ... + 10! 的阶乘和是:4037913
```
阅读全文