Home »
VB.Net »
VB.Net Programs
VB.Net program to find the tangent value for the specified angle
By Nidhi Last Updated : November 15, 2024
Finding the tangent value for the specified angle
Here, we will find the tangent value for the specified angle and print the result on the console screen.
VB.Net code to find the tangent value for the specified angle
The source code to find the tangent value for the specified angle is given below. The given program is compiled and executed successfully.
'VB.Net program to find the tangent of
'the specified angle.
Module Module1
Sub Main()
Dim tangent As Double = 0
tangent = Math.Tan(2)
Console.WriteLine("Tangent is: {0}", tangent)
tangent = Math.Tan(0.3584)
Console.WriteLine("Tangent is: {0}", tangent)
tangent = Math.Tan(0.0)
Console.WriteLine("Tangent is: {0}", tangent)
End Sub
End Module
Output:
Tangent is: -2.18503986326152
Tangent is: 0.374577262964287
Tangent is: 0
Press any key to continue . . .
Explanation:
In the above program, we created a module Module1 that contains the Main() method. In the Main() method we created a variable tangent initialized with 0.
tangent = Math.Tan(2)
Console.WriteLine("Tangent is: {0}", tangent)
tangent = Math.Tan(0.3584)
Console.WriteLine("Tangent is: {0}", tangent)
tangent = Math.Tan(0.0)
Console.WriteLine("Tangent is: {0}", tangent)
In the above code, we find the tangent value for the specified angle values and then printed them on the console screen.
VB.Net Basic Programs »