用C#编写一个求n的阶乘的函数

 我来答
百度网友9b23244
2018-10-17
知道答主
回答量:18
采纳率:0%
帮助的人:3.4万
展开全部

class Program

{

public int Factorial(int num)

{

int result;

if (num == 1)

{

return 1;

}

else

{

result = Factorial(num - 1) * num;

}

return result;

}

class Test

{

static void Main(string[] args)

{

Console.WriteLine("请说出一个整数,我将算出他的阶乘");

int a = Convert.ToInt32(Console.ReadLine());

Program n = new Program();

Console.WriteLine("{0}的阶乘是{1}",a,n.Factorial(a));

Console.ReadKey();

}

}

}


匿名用户
2013-04-06
展开全部
public int jc(int n) {
if(n==1)
return 1;
else
return n*jc(n-1);
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2013-04-06
展开全部
private double jc(int n)
{
double jc1 = 1;
for (int i = 1; i <= n;i++ )
{
jc1 = jc1 * i;
}
return jc1;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
无名可用_狂汗
推荐于2017-10-01 · TA获得超过3025个赞
知道大有可为答主
回答量:2016
采纳率:0%
帮助的人:1171万
展开全部
public static int jiecheng(int n)
{
if (n == 1)
return 1;
else
return n * jiecheng(n - 1);
}
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
丁文博0721
2013-04-15 · TA获得超过263个赞
知道答主
回答量:159
采纳率:0%
帮助的人:170万
展开全部
你好
public int GetResult(int n)
{
switch(n)
{
case 0:
case 1:
return 1;
default :
return n*GetResult(n-1);
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式