给个JAVA递归的例子 比如阶乘的

[复制链接]
查看11 | 回复3 | 2016-10-12 04:03:19 | 显示全部楼层 |阅读模式
class factorial { public static void main(String[] args) { int n=5; System.out.println(n+"的阶乘是:"+Factorial(n)); } public static int Factorial(int x){return x==0?1:x*Factorial(x-1); } }...
回复

使用道具 举报

千问 | 2016-10-12 04:03:19 | 显示全部楼层
public int test(int n){if(n==1) return 1;return n*test(n-1);}...
回复

使用道具 举报

千问 | 2016-10-12 04:03:19 | 显示全部楼层
public int test(int n){return n==1?1:n*test(n-1);}...
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

主题

0

回帖

4882万

积分

论坛元老

Rank: 8Rank: 8

积分
48824836
热门排行