编写java应用程序求1+2++10!并给出思路
时间: 2024-05-09 19:18:41 浏览: 57
思路:
1. 定义一个变量result,用来存放阶乘的结果,初始值为1。
2. 使用for循环,从1到10依次计算阶乘,将每次计算的结果乘以result。
3. 输出最终的结果。
Java代码:
```java
public class Factorial {
public static void main(String[] args) {
int n = 10;
int result = 1;
for (int i = 1; i <= n; i++) {
result *= i;
}
System.out.println(n + "! = " + result);
}
}
```
输出结果:
```
10! = 3628800
```
阅读全文