Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main()
- {
- int A = 700;
- int B = 800;
- double directionAB;
- double degreesAB;
- directionAB = A / B;
- double asin(double directionAB);
- degreesAB = directionAB * 180 / 3.14159265;
- cout << degreesAB << endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement