Advertisement
2607

d3q5

Sep 8th, 2021
1,366
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.27 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <math.h>
  3.  
  4. int main()
  5. {  
  6.     long double x;
  7.     long double y;
  8.     scanf("%Lf", &x);
  9.     y = 7.0e-3 * pow(x,4) + ((22.8 * pow(x,1/3) - 1.0e3) * x + 3) / (x * x / 2) - x * pow(10 + x,2/x) - 1.01;
  10.     printf("%.1Lf", y);
  11.     return 0;
  12. }
  13. /* No type check */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement