Advertisement
Guest User

Untitled

a guest
Sep 20th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <math.h>
  3.  
  4. int main()
  5. {
  6. double c, d, x1, x2, itog, g;
  7. scanf("%lf %lf", &c, &d);
  8. x1 = (3 + sqrt(9 + abs(c * d))) / 2;
  9. x2 = (3 - sqrt(9 + abs(c * d))) / 2;
  10. g = pow(c * x1 * x1 * x1 + d * x2 * x2 - x1, 2);
  11. g = g + 3.14;
  12. itog = (abs((pow(sin(abs(c * pow(x1, 3) + d * x2 * x2 - c * d)) ,3))) / (sqrt(g)) + tan(c * x1 * x1 * x1 + d * x2 * x2 - x1));
  13. printf("%f", itog);
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement