Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include "stdafx.h"
- #include "iostream"
- #include "conio.h"
- #include "cmath"
- using namespace std;
- int main()
- {
- double a = 3.56;
- double b = 1.02;
- double c = 3;
- double d = 2.43;
- double y;
- y = pow(tan(a), 1.00 / c) / (1 + (sinh(b) / log(abs(d+c))));
- cout << "y = " << y << endl;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement