Java经典编程题50道之二十二
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java经典编程题50道之二十二相关的知识,希望对你有一定的参考价值。
利用递归方法求5!。
public class Example22 {
public static void main(String[] args) {
int n = 5;
long s = sum(n);
System.out.println(n + "!= " + s);
}
public static long sum(int n) {
long s = 1;
if (n == 1||n==0) {
s = 1;
} else {
s = n * sum(n - 1);
}
return s;
}
}
以上是关于Java经典编程题50道之二十二的主要内容,如果未能解决你的问题,请参考以下文章