编写Java代码:使用循环和递归实现求5的阶乘。
时间: 2024-03-20 11:44:41 浏览: 63
jsp求阶乘的demo代码.zip
使用循环实现求5的阶乘的Java代码如下:
```java
public class Main {
public static void main(String[] args) {
int n = 5;
int result = 1;
for(int i = 1; i <= n; i++) {
result *= i;
}
System.out.println(n + " 的阶乘是:" + result);
}
}
```
使用递归实现求5的阶乘的Java代码如下:
```java
public class Main {
public static void main(String[] args) {
int n = 5;
int result = factorial(n);
System.out.println(n + " 的阶乘是:" + result);
}
public static int factorial(int n) {
if(n == 0 || n == 1) {
return 1;
} else {
return n * factorial(n - 1);
}
}
}
```
阅读全文