qbasicking
Programmer
Its been a while...
How do you find the Inverse Sine of a value in Qbasic?
How do you find the Inverse Sine of a value in Qbasic?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Function Arcsin(X as double)
Arcsin = Atn(X / Sqr(-X * X +1))
End Function