java求n的阶乘for循环
时间: 2023-07-10 07:31:39 浏览: 98
JAVA求N的阶乘
以下是Java中使用for循环求n的阶乘的代码:
```java
public class Factorial {
public static void main(String[] args) {
int n = 5; // 求5的阶乘
int result = 1;
for (int i = 1; i <= n; i++) {
result *= i;
}
System.out.println(n + "的阶乘是:" + result);
}
}
```
输出结果为:
```
5的阶乘是:120
```
需要求其他数的阶乘,只需将代码中的n改为其他数字即可。
阅读全文