Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <stdio.h>
- #include <math.h>
- #include <cmath>
- using namespace std;
- int main()
- {
- double angle, sin_result, cos_result, tan_result, length_adj, length_hyp, length_opp;
- cout << "Trigonometry Calculator\n";
- cout << "Enter your angle\n";
- cin >> angle;
- cout << "1:Sine\n";
- cout << "2:Tangent\n";
- cout
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment