【算法初步】编写一个递归的静态方法计算ln(N!)的值

本文介绍了一种使用递归方法来计算一个数的自然对数(以e为底)的Java实现。特殊情况下,若输入为NaN或小于0,则返回NaN;若输入为正无穷,则返回正无穷;若输入为0或1,则结果为0。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

//直接使用Math库
public static double log(double a)
Returns the natural logarithm (base e) of a double value. Special cases:
  • If the argument is NaN or less than zero, then the result is NaN.
  • If the argument is positive infinity, then the result is positive infinity.
  • If the argument is positive zero or negative zero, then the result is negative infinity.

The computed result must be within 1 ulp of the exact result. Results must be semi-monotonic.

Parameters:
a - a value
Returns:
the value ln a, the natural logarithm of a.

public static double logN(double N)
	{
		if(N == 0 || N == 1)return 0.0;  // 0的阶乘和1的阶乘都为1
		else {
			return Math.log(N)+logN(N-1);
		}
		
	}



评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值