共计 419 个字符,预计需要花费 2 分钟才能阅读完成。
要用 Java 的递归算法求 n 的阶乘,可以使用以下代码:
public class Factorial {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) {return 1;
} else {return n * factorial(n - 1);
}
}
}
在上面的代码中,我们定义了一个 factorial
方法,它接受一个整数 n 作为参数,并使用递归的方式计算 n 的阶乘。递归的终止条件是当 n 等于 0 时,返回 1。否则,递归调用 factorial
方法计算 n - 1 的阶乘,并将结果与 n 相乘,最后返回结果。在 main
方法中,我们调用 factorial
方法计算 5 的阶乘,并把结果打印出来。输出结果为 5 的阶乘是:120
。
丸趣 TV 网 – 提供最优质的资源集合!
正文完