利用递归方法求5!(JAVA程序)

 我来答
oolgloo
推荐于2017-12-16 · TA获得超过2636个赞
知道小有建树答主
回答量:604
采纳率:0%
帮助的人:653万
展开全部
public class Test {
public static void main(String args[]) {
int x = 5;
int rs = Fac(x);

System.out.println("" + x + "! = " + rs);
}

public static long Fac(int x) { /*阶乘算法*/
if (x > 1)
return (x * Fac(x - 1)); /*递归*/
else
return 1;
}
}
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
水边一枪
2011-05-04 · TA获得超过130个赞
知道小有建树答主
回答量:115
采纳率:100%
帮助的人:73.3万
展开全部
public class DiGuiTest
{

/**
* @param args
*/
public static void main( String[] args )
{
DiGuiTest di = new DiGuiTest();
System.out.println( di.Function1( 5 ) );
// TODO Auto-generated method stub

}
//method
public int Function1( int a )
{
if( a == 1 )
return a;//递归结束条件
return a * Function1( a - 1 );//调用递归
}

}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
wang5620479
2011-05-04 · 超过17用户采纳过TA的回答
知道答主
回答量:80
采纳率:0%
帮助的人:50.5万
展开全部
public class Test
{
public static int method(int i)
{
if(i == 1)
{
return i;

}
else
{
return i* method(i - 1);

}

}

public static void main (String[] args)
{
System.out.println(method(5));
}

}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
qpengpeng01
2011-05-04
知道答主
回答量:40
采纳率:0%
帮助的人:0
展开全部
您好!!
public class Digui {
public static int digui(int n){
if(n==1)return 1;
else
return n*digui(n-1);
}
public static void main(String[] args) {
System.out.println(digui(5));
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
qhfbesc
2011-05-09 · TA获得超过858个赞
知道小有建树答主
回答量:1035
采纳率:33%
帮助的人:631万
展开全部
public class T{

public static void main(String args){

}

public static int F(int n){
if(n == 1){
return 1;
}
return n * F(n - 1);
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式