Advertisement
punidota

Untitled

Sep 13th, 2015
414
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.30 KB | None | 0 0
  1. #include "stdafx.h"
  2. #include "iostream"
  3. #include "conio.h"
  4. #include "cmath"
  5.  
  6.  
  7. using namespace std;
  8. int main()
  9. {
  10.     double a = 3.56;
  11.     double b = 1.02;
  12.     double c = 3;
  13.     double d = 2.43;
  14.     double y;
  15.     y = pow(tan(a), 1.00 / c) / (1 + (sinh(b) / log(abs(d+c))));
  16.     cout << "y = " << y << endl;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement