You need to create a program that allows the user to do basic trigonometry functions. First, ask the user if he or she would like to do sine, cosine, or tangent (sin, cos, tan).
Then, ask the user for a decimal number and return the results. Here is some sample output: Welcome to the simple trigonometry helper. Would you like to do: 1. sin 2. cos 3. tan > 1 Enter the number to sin: > 1.1 0.0191974
To complete this assignment, you will need to do some research. First, check to see if these trigonometry functions are part of your language. Next, see if they are included with the language, but need to be imported. Finally, look externally for them.