Advertisement
Mr_D3a1h

Untitled

Sep 11th, 2019
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.33 KB | None | 0 0
  1.  
  2. #include <stdio.h>
  3. #include "math.h"
  4.  
  5. int main()
  6. {
  7.     double x,y,z,t1,t2,t3,t4,q;
  8.     z = -3.298e-2;
  9.     printf("Введите х у:\n");
  10.     scanf("%lf %lf", &x, &y);
  11.     t1 = fabs(pow(x,y/x)-pow(y/x,1./3.));
  12.     t2 = y - x;
  13.     t3 = cos(y)-z/t2;
  14.     t4 = 1 + t2*t2;
  15.     q = t1 + t2*(t3/t4);
  16.     printf("%lf\n", q);
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement