VB.Net program to demonstrate the Math.Exp() method
'VB.Net program to demonstrate Math.Exp() method.
Module Module1
Sub Main()
Dim num As Integer = 0
Console.Write("Enter the number: ")
num = Integer.Parse(Console.ReadLine())
Console.WriteLine("Result : {0}", Math.Exp(num))
End Sub
End Module
Output
OUTPUT
Enter the number: 10
Result : 22026.4657948067
Press any key to continue . . .
Table of Contents