Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <math.h>
- int main()
- {
- long double x;
- long double y;
- scanf("%Lf", &x);
- 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;
- printf("%.1Lf", y);
- return 0;
- }
- /* No type check */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement