Advertisement
Mr_D3a1h

Untitled

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