Advertisement
Mr_D3a1h

Untitled

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