Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Public Class Form1
- Private Sub Form1_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load
- MsgBox(InverseSineAsDegrees(Math.Sqrt(2) / 2))
- End Sub
- Public Function InverseSineAsDegrees(ByVal n As Double) As Double
- Return Math.Asin(n) * (180 / Math.PI)
- End Function
- End Class
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement