10 个解决方案
#1
Math.Exp()方法
#2
那是e的多少次幂啊,我要的是对数
#3
Math.Log
#4
log()那个参数e该怎么写?
#5
Math.Log(Math.E, 1234);
#6
哦,谢谢了哈
#7
貌似写反了
Math.Log(1234,Math.E);
Math.Log(1234,Math.E);
#8
哪有e?
double n = Math.Log(8, 2);
Console.WriteLine(n.ToString());
double n = Math.Log(8, 2);
Console.WriteLine(n.ToString());
#9
public const double E
Member of System.Math
Summary:
Represents the natural logarithmic base, specified by the constant, e.
#10
sdf
#1
Math.Exp()方法
#2
那是e的多少次幂啊,我要的是对数
#3
Math.Log
#4
log()那个参数e该怎么写?
#5
Math.Log(Math.E, 1234);
#6
哦,谢谢了哈
#7
貌似写反了
Math.Log(1234,Math.E);
Math.Log(1234,Math.E);
#8
哪有e?
double n = Math.Log(8, 2);
Console.WriteLine(n.ToString());
double n = Math.Log(8, 2);
Console.WriteLine(n.ToString());
#9
public const double E
Member of System.Math
Summary:
Represents the natural logarithmic base, specified by the constant, e.
#10
sdf