Advertisement
Mr_D3a1h

Untitled

Sep 16th, 2019
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.32 KB | None | 0 0
  1. int main()
  2. {
  3.     double x,y,t1,t2,t3,t4,t5;
  4.     double z =15.221;
  5.     printf("Введите х и у: ");
  6.     scanf("%lf %lf",&x, &y);
  7.     t1 = fabs(x-y);
  8.     t2 = exp(t1)*pow(t1,x+y);
  9.     t3 = t2/(atan(x)+atan(z));
  10.     t4 = pow(pow(x,6)+log(y)*log(y),1./3.);
  11.     t5 = t4 + t3;
  12.     printf("%lf\n",t5);
  13.     return 0;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement