C# में MathF.Exp () विधि निर्दिष्ट शक्ति को बढ़ा देती है।
सिंटैक्स
निम्नलिखित वाक्य रचना है -
public static float Exp (float 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