带有示例的 C# 中的 MathF.Exp() 方法
C# 中的 MathF.Exp() 方法返回指定指数的升幂。
语法
以下是语法 -
public static float Exp (float val);
此处,Val 是浮点数。
示例
我们现在来看一个示例来实现 MathF.Exp() 方法 -
using System; class Demo { public static void Main(){ float val = 90f; float res = MathF.Exp(val); Console.WriteLine("MathF.Exp() = "+res); } }
输出
这将生成以下输出 -
MathF.Exp() = Infinity
示例
我们现在来看另一个示例来实现 MathF.Exp() 方法 -
using System; class Demo { public static void Main(){ float val = 0.00f; float res = MathF.Exp(val); Console.WriteLine("MathF.Exp() = "+res); } }
输出
这将生成以下输出 -
MathF.Exp() = 1
广告