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